Jump to content

[SOLVED] Displaying an image using PHP


yddib

Recommended Posts

Hi lads,

My code here may well be kinda ridiculous, all my PHPing is basically flailing in the dark until something works.

 

Basically i have a URL to an image stored in my database, and I want to be able to pull out different URLs with PHP and display the actual images. at the moment i'm just getting a red X. I can get the URL out no bother, it's making it into an actual image that's the problem.

 

At the moment i'm doing

 

$result = @mysql_query("SELECT pic FROM gradinfo where email ='$email' and pass ='$pass' ");
if (!$result) {
exit('Error performing query: ' . mysql_error());
}

while ($row = mysql_fetch_array($result)) {
echo "<img src=<'".$row['pic']."'>";

}  

 

 

Any suggestions appreciated, thanks!

Link to comment
https://forums.phpfreaks.com/topic/122692-solved-displaying-an-image-using-php/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.