Jump to content

Recommended Posts

I have currently write an php page to import the data from .txt file and insert into mysql database.

Data example in (test.txt file):
[email protected]
[email protected]
110007;"[email protected]"
[email protected]

the php page
[code]<?
$fd = fopen ("c:\test.txt", "r");
if (!$fd)
{
echo "ERROR: $errno - $errstr";
}
else
{
  while ( !feof($fd) )
{  
    $buffer = fgets($fd, 4096);
    <<i think i need to put checking here.... any ideas.. thanks...?      
    $query = " INSERT INTO emailAddress(Email) values ($buffer)";
}
fclose($fd);
}
?> [/code]
after in run the php script, the data will be insert into table and become:
ID Email
1 [email protected]
2 [email protected]
3 110007;"[email protected]"--> want this to be [email protected]
4 [email protected]

i want to remove the 110007; and the double quote, as i only want the take valid email address and save into my table. Is there any way to remove the 110007, ; , and "" so that the email address for ID 3 will become [email protected] ? Thanks
will other e-mails have the same [i]syntax[/i] as 110007;"[email protected]"? or could it be something different?

if they will only have a syntax like the example the following function would work

[code]function clean_email($email){

    if (strstr($email, ';') == TRUE)
    {
        $email = split(';',$email); //splits string at; $email[0] will be '110007'  $email[1] will be "[email protected]"
        $email = str_replace('"','',$email[1]); //removes " from $email[1]
    }

  return $email; // returns [email protected]
}[/code]

to use the function

[code]$email = '110007;"[email protected]"';
echo clean_email($email); //returns [email protected][/code]
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.