Created
April 24, 2012 20:49
-
-
Save anonymous/2483596 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$conn = mysql_connect("localhost", "username", "password" ) or die (mysql_error()) ; | |
mysql_select_db("database", $conn); | |
if( !isset( $_GET['p']) ) {$_GET['p']=0;} | |
$per_page= 9; | |
$sql= "SELECT * FROM black"; | |
$sql2= "SELECT image FROM black ORDER BY id Asc LIMIT ".$_GET['p']."," . $per_page; | |
$query= mysql_query( $sql2 ); | |
$rows= mysql_num_rows( mysql_query ( $sql ) ); | |
$pages= ceil ( $rows / $per_page ); | |
while( $fetch= mysql_fetch_assoc( $query) ){ | |
echo '<a href="chaos_request.php?id='.$_GET['id'].'"><img src="'.$fetch['image'].'"/></a>'; | |
echo "<br/>" ; | |
} | |
for( $i=0;$i<$pages;$i++){ | |
echo '<a href="chaos.php?p='. ( $i * $per_page ) .'">'. ($i + 1 ) ."</a> "; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment