Me again.
theres something gone really wrong with my setup.
i have 2 records currently in my calls table. both were entered by two different users filling in the same form.
i run the following and only get one result. what on earth is going on?
$query = "SELECT * from calls";
$result = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_array($result);
while ($row = mysql_fetch_assoc($result))
{
echo $row['problem'];
}
surely this query is correct?
what annoying is this was all working fin with the inner join query in my previos (above) post. then all of a sudden it stopped working properly and intermittently.
does anyone have any ideas? please my system is now ruined!!
thanks.