[PHP] Empty delimiter error - ??

2002-04-13 Thread Rich Pinder

I'm totally unfamiliar with php, and making some slight modificiations
to Chris Heilmann's nice v 1.1 Newsleterscript.

What exactly is meant by an empty delimiter?  This code works just fine,
but I get the following error:

Warning: Empty delimiter in /home/sites/site56/web/trailcrew.php on line
63



# Put the entries into the array lines
$lines = explode(%,$content);
for ($key=1;$keysizeof($lines);$key++){
# when the email is not in the list, add the old entries
 if (!stristr($lines[$key], $email)) {
offending line - line 63
  $out .= %.$lines[$key];
 }
# when it's already in the list, set found
 else {
  $found=1;
 }
}


Thanks
Rich Pinder




[PHP] Empty Delimiter error

2002-04-13 Thread Rich Pinder

Let me try again:

This line of the script:

if (!stristr($lines[$key], $email)) {


yields the following error:
Warning: Empty delimiter in /home/sites/site56/web.


Do you know what causes this error ?

Thanks
r

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php