Results 1 to 2 of 2

Thread: Help Paginating pages1,2,3..

  1. #1
    Join Date
    Oct 2005
    Posts
    255
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Help Paginating pages1,2,3..

    Hi I have a script and I need help paginating it and every tutorial I see are so freakin confusing....

    Code:
    <?
    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
    Hey new design new look, goto xudas for personal webdsign help.. (:

  2. #2
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    There's a very detailed explanation of pagination at http://www.php-mysql-tutorial.com/php-mysql-paging.php
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •