Ah yes, of course, I mised that.
Cheers mate, spent ages trying to suss it out.
have changed the processing page to ~
for($i = 0; $i <= 2; $i++)
{
if($result = mysql_query($query))
{
while( $row = mysql_fetch_row($result) )
{
$output = $row[$i];
$_SESSION ['row '.$i] = $output;
}
// free results
mysql_free_result($result);
}
}
Works now.
Thanks again.
Steve
|