<table align="center" border="1" cellspacing="1" cellpadding="1"> <tr> <th width="10%">Posted</th> <th width="20%">Title</th> <th width="20%">Location</th> <th>User</th> </tr> <?php $result = mysqli_query($cnx, "SELECT * FROM jobs ORDER BY id DESC"); while($row = mysqli_fetch_array($result)){ echo("<tr><td>".$row['date']."</td><td>".$row['title']."</td><td>".ucfirst($row['city']).", ".$row['state']."<td>".ucfirst($row['username'])."</td></tr>"); } mysqli_free_result($result); ?> </table>
<tr>
<tbody>
<table align="center" border="1" cellspacing="1" cellpadding="1"> <tbody style="margin-bottom:20px;"> <tr> <th>Month</th> <th>Savings</th> </tr> </tbody> <tbody style="margin-bottom:20px;"> <tr> <th>Month</th> <th>Savings</th> </tr> </tbody> </table>
Jump To Top of Thread