Im still trying to learn preg_replace
I need to replace any occurences of an image tag with #IMAGE#
like <img src="whatever" /> would become #image#
ive tried
preg_replace('/<img src='' //>','#image#',$string);
but am not having any luck. Can someone tell me what im doing wrong please?