yay, regex!

i prefer to not use "." (any character)

Code: 
#<img[^>]?src="([^"]+)"#
local, i dunno really, maybe he wanted to take images off a site, automatically put them in img tags for him to copypasta, then post them wherever.
JmZ Reviewed by JmZ on . [PHP] Grab all img links from html/webpage /* For ibby */ <? $request_url ='http://www.besthostingforums.com/'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $request_url); // The url to get links from curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // We want to get the respone Rating: 5