User Profile

Collapse

Profile Sidebar

Collapse
A973C
A973C
Last Activity: Oct 29 '12, 08:07 PM
Joined: Oct 28 '12
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • A973C
    replied to Display mysql records from database 1 by 1
    in PHP
    Pagination need a human action. With 7000 records and ~20 seconds per record, it would need so much time!

    Do you have a link/code snippet to share for ajax use, please?
    See more | Go to post

    Leave a comment:


  • A973C
    replied to Display mysql records from database 1 by 1
    in PHP
    Thank you for your answer Rabbit!

    I'm searching a way to fire my ECHO after each record, a live update. So i don't want to have to wait the end of the script (can take several hours).
    See more | Go to post

    Leave a comment:


  • A973C
    started a topic Display mysql records from database 1 by 1
    in PHP

    Display mysql records from database 1 by 1

    In my PHP script, I have a basic mysql call :


    Code:
    $sql = "SELECT * FROM ...";
    $req = mysql_query($sql) or die();
    
    while($data0 = mysql_fetch_assoc($req)) {
      //some update stuff here
      echo "Important information about update...";
    }
    I have +7000 records in my database (and growing), so i'd like to show the update process result 1 by 1 and not showing...
    See more | Go to post
No activity results to display
Show More
Working...