Is it possible to call the $random in another page? i used the $random as a filename in the image that was converted from movie to jpeg.
im planning to use the $random from page1.php in page2.php in these code to filter the url that im planning to display.
my problem is i cant pass the $random from page1.php to page2.php..
Please help im a newbie to php.
Code:
$random = rand(1000000, 9999999); $_SESSION['random']=$random;
Code:
$sql = mysql_query("SELECT * FROM image WHERE url = '" . $random. "'") or die(mysql_error());
Please help im a newbie to php.
Comment