Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<td class="customers">[red] [/red]<?php echo $row_rs_customers['sub_day']; ?>
/
<?php echo $row_rs_customers['sub_month']; ?>
/
<?php echo $row_rs_customers['sub_year']; ?>
[red] [/red]</td>
<table>
<tr>
<td class="blackhead1">Date Submitted</td>
<td class="blackhead1">Wedding Date</td>
<td class="blackhead1">Wedding Location</td>
<td class="blackhead1">Brides Fullname</td>
<td class="blackhead1">Grooms Fullname</td>
</tr>
<?
//connect to db and select database
$query = ""; //insert query
$result = mysql_query ($query);
while ($row = mysql_fetch_assoc($result)):
foreach ($row as &$val):
$val = empty($val) ? " " : $val;
endforeach;
extract ($row);
$date_submitted = date ("j/n/Y", strtotime("$sub-year-$sub_month-$sub_day"));
$wedding_date = date ("j/n/Y", strtotime("$wed_year-$wed_month-$wed_day"));
?>
<tr>
<td class="customers"><?=$date_submitted?></td>
<td class="customers"><?=$weddingdate?></td>
<td class="customers"><?=$wedding_location?></td>
<td class="customers"><?=brides_fullname?></td>
<td class="customers"><?=$grooms_fullname?></td>
</tr>
<? endwhile; ?>
</table>