I am a big time user of using double quotes in PHP so that I can parse variables without concatenating strings. As a result, when I am generating HTML I often use single quotes for setting tag fields. Example:
$html = "<input type='text' name='address' value='$address'>" ;
Now this is far more readable to me then either
$html = "<input type=\"text\" name=\"address\" value=\"$address\">" ;
or
$html = '<input type="text" name="address" values="' . $address . '">' ;
from brief searches I have heard people saying that single quotes for HTML fields is not recognized by EVERY browser. Thus I am wondering what browsers would have problems recognizing single quote HTML?