Jump to content

Search the Community

Showing results for tags 'php mysql paging'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to PHP Freaks
    • Announcements
    • Introductions
  • PHP Coding
    • PHP Coding Help
    • Regex Help
    • Third Party Scripts
    • FAQ/Code Snippet Repository
  • SQL / Database
    • MySQL Help
    • PostgreSQL
    • Microsoft SQL - MSSQL
    • Other RDBMS and SQL dialects
  • Client Side
    • HTML Help
    • CSS Help
    • Javascript Help
    • Other
  • Applications and Frameworks
    • Applications
    • Frameworks
    • Other Libraries
  • Web Server Administration
    • PHP Installation and Configuration
    • Linux
    • Apache HTTP Server
    • Microsoft IIS
    • Other Web Server Software
  • Other
    • Application Design
    • Other Programming Languages
    • Editor Help (PhpStorm, VS Code, etc)
    • Website Critique
    • Beta Test Your Stuff!
  • Freelance, Contracts, Employment, etc.
    • Services Offered
    • Job Offerings
  • General Discussion
    • PHPFreaks.com Website Feedback
    • Miscellaneous

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Age


Donation Link

Found 1 result

  1. I have a DB with 400 000+ entries and am trying to split it into 10 entries per page... My usual paging for smaller DB rows are working fine with no loading issues. Just with the large table (with joins) it bacomes a very long page load. I am not sure what should be done to improve page load.... The script I have for paging works as follow: $query2 = mysql_query("SELECT COUNT( * ) FROM table_in WHERE table_in.scat='$blcid' $wprov $wtown"); list($nrResults) = mysql_fetch_row($query2); //$nrResults=mysql_num_rows($result2); IF (($nrResults%$limit)<>0) { $pmax=floor($nrResults/$limit)+1; // Divide to total result by the number of rows needed per page // to display per page($limit) and create a Max page } ELSE { $pmax=floor($nrResults/$limit); } $pagenumber=(($pages-1)*$limit); $query= "SELECT field, field, field, field FROM table_in JOIN s_tow ON s_tow.tId=table_in.tow JOIN s_reg ON s_reg.rId=table_in.ar JOIN s_pro ON s_pro.pId=table_in.pro JOIN bt ON bt.id=table_in.lid WHERE table_in.sct='$blcid' $wprov $wtown GROUP BY table.lid ORDER BY date $nav limit $pagenumber, $limit"; $allads=mysql_query($query) or die(mysql_error()); This works fine if I have up to 500 rows.... But cause havoc with 400 000 rows.... What should I do?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.