From: "PHPDiscuss - PHP Newsgroups and mailing lists" <[EMAIL PROTECTED]>
> if (eregi ('<tr><td valign = "top"><span class = "gray">' . '[.+]'
> '</span></td></tr></table>', $line, $cont))
[.+] is going to match a literal period or plus sign and only one of them.
You either want just .+ to match one or more of any character or (.+) if you
want to capture the match.
---John Holmes...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

