3
I have the table tbl_galeria
, what happens is that I want to make a consultation, but the consultation cannot show the first result. That is, the query will return all values except the one with the smallest id.
$query = mysql_query("SELECT * FROM tbl_galeira ORDER BY id ASC");
By the way try using the function mysqli_ since the mysql_ will be discontinued.
– Jorge B.
Okay, thanks for the tip!
– pc_oc