Posted: Fri Oct 13, 2006 10:39 pm
just change the regex...
this will match the img tags. if you need to replace it with something just feed it to the preg_replace function
Code: Select all
#<img[^>]+>#isA community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
#<img[^>]+>#isCode: Select all
$user_sig = preg_replace('#<img[^>]+>#is','',$user_sig);