> if ($line1){     file://This is what is in Line1 Dear ##fullname##
> $line=$line1;
> proce($line);
> $line1=$line;
> }

I think you just want:

if ($line1){
    $line1 = proce($line1);
}

And, since proce won't do much with an empty $line1 anyway, you can probably
get rid of the if() parts.

--
WARNING [EMAIL PROTECTED] address is an endangered species -- Use
[EMAIL PROTECTED]
Wanna help me out?  Like Music?  Buy a CD: http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to