hi all
if i execute the mysql_query in a page (php),
how can pass the $result to another page (php) completely?
how to do so?
$query = "SELECT * FROM library" //just a simple example.
$result = mysql_query($query,$db);
because my original query is very complicated and long. i want to make use the $result .
really appreciate ur help
Alex