My list always misses off the last record !
Is it normal that this coding shows up to the penultimate record
and does not list the last one ?
How do i get all of them to list ?
Many thanks.
$result = mysql_query($sql)
or die ("Could not execute MAIN query.");
while ($row = mysql_fetch_array($result, MYSQL_ASSOC) )
{
extract($row);
require("homes_list.php"); // some code that prints out the details.
}