所以我需要找到我的 MySql 表的最后一个条目,我这样得到第一个:
if($f4==0) { /*do this*/ } else { /*or do that*/ }
我有一个带有递增 ID 的表,但它按如下位置排序:
$query="SELECT * FROM promotions ORDER BY position";
我基本上需要类似的东西:
if($f4==Last row in table) { /*Do this*/ } else { /*Or do that*/ }