leetcrew wrote:How do i put the values on a table just like this?
This is messy but you'll get the idea...it just loops out the rows
<table>
<?php
while ($row_temp = $db->fetch_array($retid_temp))
{
?>
<tr>
<td><?php print $row_temp[prefix]; ?></td>
<td><?php print $row_temp[name]; ?></td>
<td><?php print $row_temp[last_name]; ?></td>
</tr>
<?php } ?>
</table>