Jump to content

display image from uploaded directory (php mysql)


benidopogi

Recommended Posts

hi to all.Im currently displaying the images from my upload directory but the image does not display.please help thanks

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Untitled Document</title>

</head>

 

<body>

<form enctype="multipart/form-data">

<?php

include 'connect.php';

$dir = '/images/advisory';

$res = mysql_query("Select * from image_advisory

   INNER JOIN 

main_advisory

ON

image_advisory.advisory_id = main_advisory.id

  ");

 

echo"<table border='1px'>";

while($row=mysql_fetch_array($res))

   {

echo"<tr>";

 

echo"<td>"; echo $row['advisory']; echo "</td>";

 

echo"<td>";?><img src="<?php echo images/advisory/'.$row["ad_img"].'; ?>" height="100" width ="100" > <?php echo "</td>";//this is the error please help

 

 

echo"</tr>";

}

echo "</table>";

 

?>

</form>

</body>

</html>

post-173559-0-14044500-1416041526_thumb.png

Edited by benidopogi
Link to comment
Share on other sites

You can do the multiple echo with one

also eliminating the need to keep breaking in and out of php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR...nsitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<form enctype="multipart/form-data">
<?php
include 'connect.php';
$dir = '/images/advisory';
$res = mysql_query("Select * from image_advisory
   INNER JOIN
main_advisory
ON
image_advisory.advisory_id = main_advisory.id
  ");

echo "<table border='1px'>";
while ($row = mysql_fetch_array($res)) {
    echo "<tr>";
   
    echo "<td>" . $row['advisory'] . "</td>";
   
    echo "<td><img src='" . $dir . "/" . $row['ad_img'] . "' height='100' width ='100' ></td>";
   
   
    echo "</tr>";
}
echo "</table>";

?>
</form>
</body>
</html>
Edited by QuickOldCar
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.