Example:
$ip = getenv("REMOTE_ADDR");
$password = $_POST['password'];
ASCII normalized:
$ip = getenv("remote_addr");
$password = $_post['password'];
HTML normalized:
$ip=getenv("remote_addr");
$password=$_post["password"];
So, my question is this:
How can we get PHP tags ( <? and <?php ) marked as 'HTML' file type so they are normalized the same as other 'web' files?
Also, there are more than a few HTML files that browsers render 'properly' that don't contain the following tags: