Hi, I am trying to display multiple images on a search page. If name comes up in search so does image under same user id. It works only for one image for all names same. Example: Facebook, same name found in search but different images. I'm thinking a do while loop on the get.php page where the
header("Content-type: image/jpg")
is but I'm not sure how to do this. Here is the get.php page:
<?php
$image = "-1";
if (isset($_SESSION['image'])) {
$image = $_SESSION['image'];
}
header("Content-type: image/jpg");
echo $image;
?>
Any advice would be awesome, Thanks