ah ha......it diddnt work, but its definatly getting someware.
the image showed as a cross.
when clicked on, brought up the path to the image, but did not show it.
so its working, but maybe needs a bit of fiddeling.
ill pase the code in, let you have a look.
<?php
$conn= @mysql_connect("localhost","gworsnup","bracknell")
or die("Err:Conn");
$rs= @mysql_select_db("kriminalyouth", $conn)
or die("Err😃b");
$query = mysql_query("SELECT * FROM images");
while ($result = mysql_fetch_array($query))
{
echo "<a href=\"".$result['pic_path']."\"><img src=\"".$result['thumb_path']."\"></a><br>";
}
?>
for your info.
the thums are all saved as whateverthum.jpg thats how i distinguish them
e.g, currently vase.jpg is in images
vasethum.jpg is in thums
Also, is is going to create a lot of extra code to make a page that displays the image, rather than simply opening an explorer window with the image in.
your help is much apreciated.