<?php
if ( $_REQUEST['genre'] )
{
// Determine gameCount (the total number of games that fall under this category)
$query = $mainQuery . " FROM trailerTable NATURAL JOIN trailerGenreTable WHERE genreId = ${_REQUEST['genreId']} LIMIT 2 ";
$result = mysql_query ( $query ) or die ( mysql_error ( ) );
while ( $row = mysql_fetch_row ( $result ) )
DisplayItem ( $row[0], $row[1], $row[2], $row[3], $row[4], $row[5], $row[6], $row[7], $row[8], $row[9], $row[10], $row[13], $row[14], $row[15], $row[16], $row[1] );
}
// If no result
if ( !$result )
// gameCount is 0
$gameCount = 0;
// Otherwise
else
// gameCount is the number of rows
$gameCount = mysql_num_rows ( $result );
// If we have more than 20 games dont display them all on one page
if ( $gameCount > 2 )
{
echo ( '<div align="center"><text>' );
// If we are not on the first page
if ( $from != 0 )
// Previous page link
echo ( "<a href=\"?page=listGames&letter=$letter&from=".($from-2)."\">Prev page</a> " );
// Pages is gameCount / 20
$pages = $gameCount / 2;
// If it dosent go in eavenly
if ( $gameCount % 2 != 0 )
// Add one
$pages++;
for ( $i = 1; $i <= $pages; $i++ )
{
// If we are on this page then its not clickable
if ( $currentPage == $i )
echo ( "$i " );
// So we are not on this page and it is clickable
else
echo ( "<a href=\"?page=listGames&letter=$letter&from=".(($i-1)*2)."\">$i</a> " );
} // End for loop
// If we have more pages
if ( $from + 2 < $gameCount )
// Next page link
echo ( "<a href=\"?page=listGames&letter=$letter&from=".($from+2)."\">Next page</a> " );
echo ( '</text></div>' );
} // End if $gameCount > 2
?>
</table>
<div align="center">
<p><a href="http://www.game-trailers.net">> Back to Homepage <</a></p></div>
<?php
include_once ( 'footer.php' );
?>
Thanks for the help
__________________
If you want to see Please login or register to view this content. Registration is FREE or you want to see Please login or register to view this content. Registration is FREE
If you want to see or you want to see Please login or register to view this content. Registration is FREE
Or want to see the new Please login or register to view this content. Registration is FREE .Or just want to play a Please login or register to view this content. Registration is FREE . more Please login or register to view this content. Registration is FREE or yo u can
Please login or register to view this content. Registration is FREE .
You can visite one of our sites here Please login or register to view this content. Registration is FREE
Last edited by Trailerdownload; 08-15-2005 at 01:07 PM..
__________________
If you want to see Please login or register to view this content. Registration is FREE or you want to see Please login or register to view this content. Registration is FREE
If you want to see or you want to see Please login or register to view this content. Registration is FREE
Or want to see the new Please login or register to view this content. Registration is FREE .Or just want to play a Please login or register to view this content. Registration is FREE . more Please login or register to view this content. Registration is FREE or yo u can
Please login or register to view this content. Registration is FREE .
You can visite one of our sites here Please login or register to view this content. Registration is FREE