I have a define.php page that has many variables in it. I use to include in any other PHP file I make.
There is a variable named $encodingdeclaration which has <meta http-equiv="Content-Type" content="text/html; charset=utf-8">.
The script now is becoming unresponsive: that because of an extra semicolon used after text/html, What to do?
meta http-equivshould be moved to .htaccess fileAdding it inline the way you do will cause html validating to fail.
If its a html5 page, simply add the below before your [title] tag
Also use double quotes for strings such as these.