Not a Member Yet,
Click here to Register

ID: 62
Viewed: 5398
Added: Jan 28, 2002
Version:
Snippet uploaded by: snippet
Written By: snippet
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

Let's say, that in the flat files, the data is seperated using three pipes, i.e |||. For this example, the file name would be email.dat, and it will contain a list of e-mails, each seperated by |||: firefly@poolie.net|||eliavina@netvision.net.il|||justanemail@hotmail.com

<!---Head--->
none

<!---Body--->


 <?php 

// Path to the data file
$path="./email.dat";

// Get the site of the file
$filesize=filesize($path);

// Open file, read its data into $allemails and close it
$filenum=fopen($path,"r");
$allemails=fread($filenum,$filesize);
fclose($filenum);

// Making an array out of the file data, separating each email with a ||| sign
$emailbits=explode("|||",$allemails);

// Listing the array inside a loop, adding it to the database and echo about it.
while (list($key,$curemail)=each($emailbits);
$sql_insert = mysql_query("INSERT INTO email (emailid,address) VALUES (NULL,'".addslashes($curemail)."')");
$result = mysql_query ($sql_insert);
// reports an error if insert fails.
if (!$result){ echo mysql_error();}

echo "Added email: $curemail";
}

// All done, let's go home!
echo "All e-mails imported successfully!";

?>


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!