guy help po panu po ba ma i view itong image na ito nang naka table tapos grid style.
<?php $thumbs_dir = "images/upload_img/";
$dir = opendir($thumbs_dir);
$action=$_GET[action];
$file=$_GET[imageid];
if ($action == "delete"){
unlink($thumbs_dir.$file);
}
if($_POST['submit']){
$_FILES['uploaded_image']['tmp_name'];
if ($_FILES["file"]["error"] > 0){
echo "Error: " . $_FILES["file"]["error"] . "<br />";
}
move_uploaded_file($_FILES["file"]["tmp_name"], "/images/deleted_img/" . $_FILES["file"]["name"]);
}
while ($file = readdir($dir)){
if ($file != "." && $file != ".." ){
echo "
<a href=\"$thumbs_dir$file\" class=\"highslide\" onclick=\"return hs.expand(this)\">
<img src='$thumbs_dir$file' width=\"140\" height=\"80\" alt=\"$file\"/><br />$file</a>
<a href=\"logo.php?imageid=$file&action=delete\">
<img src=\"images/menu/icon-16-logout.png\" title=\"delete\" /></a><br /><br />
";
}
}
?>