View Single Post
  #3 (permalink)  
Old 09-21-2007, 03:35 PM
StevieB StevieB is offline
Junior Member
3 posts this year. needs some grease!
New user, who has not interacted much yet.
 
Join Date: Aug 2007
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Default

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
Reply With Quote