i have created a search page for locations by country in php and a dynamic
table on a results page.
Doing a test from the recordset details it returns the requested data, but if
I try the same from a browser after the pages are uploaded I only get a column
title and the cell where the information should be displayed is missing
completely.

<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<table border="1">
<tr>
<td>area</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_co_set['area']; ?></td>
</tr>
<?php } while ($row_co_set = mysql_fetch_assoc($co_set)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($co_set);
?>