Re: [PHP] Another q, this time eregi_replace

2001-01-14 Thread James, Yz
Sweet! Thanks ;) > > I'd like to strip out everything but the link name, so if someone inputs: > > > > http://www.php.net">PHP! > > > > It replaces it with: > > > > PHP! > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional com

RE: [PHP] Another q, this time eregi_replace

2001-01-14 Thread Maciek Uhlig
check http://www.php.net/strip_tags > -Original Message- > From: James, Yz [mailto:[EMAIL PROTECTED]] > Sent: Sunday, January 14, 2001 11:05 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Another q, this time eregi_replace > I'd like to strip out everything but the l

[PHP] Another q, this time eregi_replace

2001-01-14 Thread James, Yz
I'd like to be able to trim out some html tags, but only certain ones. I've used eregi_replace before and have some replacements running on some scripts... Some of the help pages and user notes on the quick reference functions have given me good examples of how to go about it. One thing I'm int