Welcome Guest ( Log In | Register)



 
Reply to this topicStart new topic
> Loading values in txt file to database
seven
post Mar 2 2005, 01:05 AM
Post #1





Guests






I have a script that during the install, I am to run a file that is supposed to load zip code data into the database. It says it runs correctly at the end but yet the table in the database remains empty.

Here is the code:

PHP Code:
CODE
<?



require('data.php');



require('functions.php');



sql_connect();



$file=file("admin/zip.txt");



$i=form_get("i");



$start=$i+1;



$end=$start+5000;



if($end>=count($file)){



$end=count($file);



}



for($i=$start;$i<$end;$i++){



$sql_query=$file[$i];



sql_execute($sql_query,'');



if($i%5000==0){



$link=$main_url."/load_zip_data.php?i=$i";



show_screen($link);



}



}//for



echo "DONE $start-$end";



?>



Can anyone see anything wrong with this code to where it won't do what it should? The zip.txt is located in the admin directory as it should be. Thanks for any help! The file load_zip_data.php is the one that is the one that contains all script above.
:?: :?:

Added [code] tags--CodeFX
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. 2 Gb Free For File Storage Or Web Hosting(12)
  2. Which File Extension Are You?(48)
  3. How To Execute sql file to create table(16)
  4. Concerts, Is there like a database of all upcoming concerts(3)
  5. What is file()?(3)
  6. Cpanel-->File Manager(6)
  7. Web Admin (file manager)(7)
  8. file format question(12)
  9. Need: Public_html file...(2)
  10. how to upload a file?(4)
  11. Can anyone tell me what the Database name is?(1)
  12. How to restore backup database & site after domain chang(1)
  13. Phpnuke Themes Database(2)
  14. File size limit?(16)
  15. Javascript loading iframes(1)
  1. html imput file(0)
  2. Database size limit ?(3)
  3. Creating a settings file for your site (PHP)(0)
  4. What files are you supposed to have under file manager?(3)
  5. big problem from database:((1)
  6. My database lost(2)
  7. i need a database backup and restore script please(0)
  8. File Urls?(5)
  9. Sig file problems(8)
  10. Reason For Trap17's Slow Loading?(17)
  11. Need File Host(8)
  12. Will There Be A free Image, File, Video And Flash Host?(5)
  13. Secure File Transfer For Mainframe Systems(2)


 



- Lo-Fi Version Time is now: 23rd November 2008 - 12:41 AM