";
// print the random numbers
while($info = mysqli_fetch_array($result))
{
$id=$info['id'];
$filename=$info['filename'];
$detail=$info['detail'];
if($filename != ""){
$img="
";
}else{
$img="";
}
print "
$id
$filename
$detail
$img
Delete
";
}
//close up ther table
print "
"; ?>