Jump to content

Image Issues n php


depojones

Recommended Posts

I was able to find solution myself. For anyone who's viewing this, I managed to use the following.

<?php
   include 'db.php';
$sql_ret = mysql_query("select pic_name from $tbl_name");
while ($row = mysql_fetch_array($sql_ret)) {
        echo '<img src=upload'. $row['pic_name'].'><br><br>';
}    
?>

 

Thanks

 

Link to comment
https://forums.phpfreaks.com/topic/200394-image-issues-n-php/#findComment-1051868
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.