This is in a different section of the site, but it relates:
How would I adapt the following code to ignore the first (the latest added ID) result?
<ul class="sidenavItemUL">
<?
include("dbinfo.inc");
mysql_connect("localhost",$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$query="SELECT * FROM reviews WHERE public='Y' ORDER BY id DESC LIMIT 25";
$result=mysql_query($query);
$num=mysql_numrows($result);
mysql_close();
?>
<?
$i=0;
while ($i < $num) {
$id_rev=mysql_result($result,$i,"id");
$band_rev=mysql_result($result,$i,"band");
$album_rev=mysql_result($result,$i,"album");
$recordco_rev=mysql_result($result,$i,"recordco");
?>
<li class="sidenavItems"><a href="review/<? echo "$id_rev"; ?>.html"><? echo "$band_rev"; ?> - <i><? echo "$album_rev"; ?></i></a> (<? echo "$recordco_rev"; ?>)</li>
<?
++$i;
}
?>
</ul>
It's a similar situation, but the "featured" item is display elsewhere so I can't work them together.