The basic purpose of my page is allow a user to upload some images. These images are stored in MYSQL Server using the following command.
$file2 = fopen($_GET['file2'],"r");
$image2 = addslashes(fread($file2, filesize($_GET['file2'])));
Now what i want to do is i want to fetch this image from MYSQL Server and display it on another page.
Bosky