我在数据库中创建了一个表来显示照片,我让它显示,但我希望它们从最后一个显示到第一个

时间:2016-06-27 17:57:28

标签: mysql sorting

<?php


$conn = mysql_connect("localhost","root","");
if(!$conn){
echo mysql_error();
}

$db = mysql_select_db("imagestore",$conn);
if(!$db ){
echo mysql_error();
}



$q = "SELECT * FROM imagetable";
$r = mysql_query("$q",$conn);



if($r)
{
while($row=mysql_fetch_array($r) )  
   {

   header("Content-type: text/html");
   echo "</br>";
   echo $row['photoname'];
   echo "</br>";

   $type = "Content-type: ".$row['phototype'];
   header($type);

   echo "<img src=image.php?fotoid=". $row['fotoid']."width =300 height =              35.     300/>";

}
}
else{

   echo mysql_error();
}


 ?>

1 个答案:

答案 0 :(得分:0)

我知道ORDER但不能在我的页面中显示我想要的照片。 我是初学者。 我使用了$q = "SELECT * FROM imagetable ORDER BY fotoid DESC";