Im trying to do this
$input = "<img src="HTML/images/user.png" alt="" />";
but it does not work out, i know im supposed to put a / before a " or something please help
Try this
$input = "<img src='HTML/images/user.png' alt='' />";
Or
$input = "<img src=\"HTML/images/user.png\" alt=\"\" />";
$input = '<img src="HTML/images/user.png" alt="" />'; ' is fast over the "