insanemonkey
09-26-2007, 07:37 PM
Hi I have a script and I need help paginating it and every tutorial I see are so freakin confusing....
<?
include("dbconnect.php");
$getscript = mysql_query("select * from stuff ORDER BY id DESC");
while($r=mysql_fetch_array($getscript)){
extract($r);
echo("
my stuff
");
}
?>
Thats my code but could someone help me implament and show me what php stuff to use,lol, Please help, thanks
<?
include("dbconnect.php");
$getscript = mysql_query("select * from stuff ORDER BY id DESC");
while($r=mysql_fetch_array($getscript)){
extract($r);
echo("
my stuff
");
}
?>
Thats my code but could someone help me implament and show me what php stuff to use,lol, Please help, thanks