Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8471515
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T16:49:01+00:00 2026-06-10T16:49:01+00:00

I am storing my database output in a .txt file. I am not having

  • 0

I am storing my database output in a .txt file. I am not having any problems, but I just want to store 100 rows of MySQL data in one .txt file and the rest in other text files with 100 rows in each file.

Here is my code which is generating all data in only one text file.

<?php 
  $File = "yourfile.txt"; 

  $Handle = fopen($File, 'w');
  $res = mysql_query("SELECT * from tableA");

  while ($row = mysql_fetch_array($res)) {
    $oumu .= ''.$row4['title'].'';
  }

  $Data = $oumu; 
  fwrite($Handle, $Data); 
  print "Data Added"; 
  fclose($Handle); 
?>

It puts all data in one text file but I want to store only 100 rows in one text file and I want to automatically create the next file so that it can store 100 rows in each text file.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T16:49:02+00:00Added an answer on June 10, 2026 at 4:49 pm

    Try something like this:

    <?php 
    $res = mysql_query("SELECT * from tableA");
    $rows = 0;
    $oumu = array();
    while ($row = mysql_fetch_array($res)) {
    $oumu[floor($rows)] .= ''.$row['title']."\r\n";
    $rows += 0.01;
    }
    foreach ($oumu as $k => $v) {
    $File = "yourfile" . ($k + 1)  . ".txt"; 
    $Handle = fopen($File, 'w');
    fwrite($Handle, $v); 
    fclose($Handle); 
    }
    print "Data Added"; 
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm storing SQL database backup file (*.bak) in the Visual Studio solution and checking
I need to manage hierarchy data storing in my database. But I have a
I'm storing an HTML values in my database then I output it on my
I'm storing time-temperature data in a database, which is really just CSV data. The
I have a database storing VIN numbers (stored as VID) for vehicles which are
Im storing columns in database with users able to add and remove columns, with
We have been storing our staging database on the production database server with the
I am using Microsoft Access database for storing data. In that, I stored date
I was wondering how to set up a database for storing actions people recently
I am retrieving information from my database and storing it in a reader. The

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.