Jump to content

PHP4 Array Manipulation


dave2008

Recommended Posts

Hi,

I am using php4 to upload a Tab delimited text file into a mysql database.  Each row of data is placed into an array and then appended the database.  What I need to do is add another column/field into the array. 

 

e.g I have my array (field1, field2, field3, field4)

 

What I need to do id insert a new field between field2 and field3

 

The code I am currently using is shown below:

if($action == "insert")
{
  $fcontents = file("paypal.txt");
  # expects the csv file to be in the same dir as this script

  for($i=0; $i<sizeof($fcontents); $i++)
{
     $line = trim($fcontents[$i]);
     $line=str_replace(",", "", $line);
     $arr = explode("\t", $arr); 

     $sql = "insert into mydb values ('".
     implode("','", $arr) ."')";
     mysql_query($sql);
   
     echo $sql ."<br>\n";
     if(mysql_error())
     {
         echo mysql_error() ."unable to load $fcontents<br>\n";
      }

      if(!mysql_error()) 
      {
         echo "<br>Database updated";
      }

}

 

Any help on this would be great

 

Thanks

Dave

 

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.