Dear respected senior php web developer i m new to php webdeveloping and hoping for a good coder one day inshaALLAH
SIR i have problem with my image hosting script
http://pashtoaudio.com/tahir/upload.php is for uploading images
and http://pashtoaudio.com/tahir/photos.php is for displaying all uploaded images how ever i want to show there small thumbs i put everything correct in <img scr=""> tag but still my images thumbs not loading pelase help me thanks!
i m giving my exact code for showing images thumbs here is the code.
<html>
<head>
<title>PHP Photo Hosting Script</title>
<link rel="stylesheet" type="text/css" href="main.css" />
</head>
<body>
<?php
include "conn.php";
echo "<center>";
include "head_menu.php";
echo "</center><br>";
?>
<div class="images_boundry">
<?php $result = mysql_query("SELECT * FROM imgs_name ");
while($images = mysql_fetch_array($result))
{
$show_img = $images['img_name'];
echo "<div class='images_thumb'><a href='http://pashtoaudio.com/tahir_upload/".$show_img."'><img scr='tahir_upload/".$show_img."'></img></a></div>";
}
?>
<div style="clear:both"></div>
</div>
</body>
</html>