image display

Hi, I’m new to php and mysql.
Yet very determined to get my image to display!

here is the code that i’m trying to get working.

<?php mysql_connect('****', '****','****') or die(mysql_error()); mysql_select_db('a9624062_music') or die(mysql_error()); // header("Content-type: image/jpeg"); $result = mysql_query("SELECT * FROM image"); echo ""; while($row = mysql_fetch_array($result)) { echo ""; echo ""; echo ""; echo ""; } echo "
Name Image
" . $row['name'] . "" . $row['image'] . "
"; ?>

any help would be appreciated,
PS: let me know if i’m posting this correctly.

Sponsor our Newsletter | Privacy Policy | Terms of Service