seems to display the the binary of the image, i want to be able to do this in one page
<?php // Make a MySQL Connection include('connect.php'); // Get all the data from the "example" table $result = mysql_query("SELECT * FROM save1") or die(mysql_error()); // keeps getting the next row until there are no more to get while($row = mysql_fetch_array( $result )) { // Print out the contents of each row into a table //header("Content-type: image/jpeg"); echo $row['name'] . ''; echo $row['description'] . '
'; echo $row['image']; //