How do I access the data in $query_data after I go through the while loop,
here is an example

$result=mysql_query($query,$link);
while ($query_data=mysql_fetch_array($result) )
{
   $var1=$query_data["var1"];
   $var1=$query_data["var1"];
}

after the while is done,   How do I access the data in query data again . I
perform calculations the first time and the second time I need to display
the rows on the screen.


Randy




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to