| Server IP : 104.21.21.239 / Your IP : 216.73.216.68 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/mitzvahm/planner/rpt/ |
Upload File : |
<?php include('mod/_mod_security.php'); ?>
<?php
$sql = "SELECT g.*,(SELECT s.state_name from states s WHERE s.state = g.state) AS state_name ".
"FROM guests g WHERE (g.invite_temple = 1 OR g.invite_av = 1 OR g.invite_kv = 1 OR g.invite_dv = 1 OR g.invite_bv = 1) AND g.invitation_send = 1 ".
"AND g.user_id = ".$_SESSION['user_id']." AND g.event_id = ".$_SESSION['active_event']." ORDER BY g.last_name, g.first_name ";
$result = mysqli_query($GLOBALS['con'], $sql) or die('Database error!');
if (mysqli_num_rows($result) <= 0) :
echo 'No data for report!';
exit();
endif;
?>
<table align="center" cellpadding="0" cellspacing="2" border="0">
<thead>
<?php report_fixed_header(); ?>
<tr>
<td width="640" align="center">
Formatted Address Proof
</td>
</tr>
</thead>
<tfoot>
<?php report_fixed_footer(); ?>
</tfoot>
<tbody>
<?php
while($row = mysqli_fetch_object($result)) :
?>
<tr>
<td>
<?php
if ($_POST['state_names'] == 'long' && !empty($row->state_name)) :
$row->state = $row->state_name;
endif;
$proof = format_address($row->invitation_text, $row->invitation_text2, $row->salutation, $row->first_name, $row->last_name, $row->suffix, $row->street, $row->street2, $row->city, $row->state, $row->zip, $row->country);
echo $proof;
?>
</td>
</tr>
<?php
endwhile;
?>
<tr>
<td>
Total: <?php echo mysqli_num_rows($result); ?>
</td>
</tr>
</tbody>
</table>