bueno en tal caso que esa imagen tenga un id o keys??
Código PHP:
// aqui el include de conexion a la base de datos
$result=mysql_query("SELECT * FROM tabla WHERE id");
if($row=mysql_fetch_array($result)){
do{
echo'<div style="position: absolute; width: 64px; height: 64px; z-index: 1">
<img src="'.$row["rutadeimagen"].'" width: 64px height: 64px />
</div>';
}while($row=mysql_fetch_array);
}else{
echo"No hay imagenes en la base de datos";
}