at the moment i have this which i worked on a while back, i would like to use this has i was chuffed with the outcome even though not much was my first piece i did
<?php
$pathtodir = "http://www.64pixels.com/cameraimages/";
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
echo "[img]".$pathtodir.$file."[/img]<br />\n";
echo "<a href=".$pathtodir.$file. "><img src=".$pathtodir.$file. " width= 25% height= 18.75% /></a><br />\n";
}
}
closedir($handle);
}
is there anyway to use that and still achive what i wanted ?
thanks for time matt
