Richard Heyes wrote:
How can i match an image tag correctly so it does not cause any issues
with how the user adds the image.

preg_match_all('/<img[^>]*>/Ui');

Off the top of my head. This wouldn't allow for using the right angle bracket in the img tag, but that's almost never going to happen in reailty.

Oops that should be:

preg_match_all('/<img[^>]*>/Ui', $input, $matches);

--
Richard Heyes
+44 (0)844 801 1072
http://www.websupportsolutions.co.uk

Knowledge Base and HelpDesk software
that can cut the cost of online support

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

Reply via email to