![]() |
|
|
+ Search |
![]()
|
Mar 10th, 2006 08:47
Praveen Kumar Kukkapalli, Jon F,
If I understood correctly.....
If you want to retrieve values from 2 fields and show those, you can do
in the following way...
<table>
<?php
while($row = mysql_fetch_array($result))
{
?>
<tr>
<td><?=$row[0]?></td>
<td><?=$row[1]?></td>
</tr>
<?php
}
?>
</table>