Friday 26 June 2015

HTML Encoding With htmlspecialchars and htmlentities

HTML Encoding With PHP

HTML is the markup language of the web, and when it comes down to it, it is the HTML that makes the web tick. All of these fancy programming languages are fun to use in order to facilitate dynamic pages and so on, but without HTML, we wouldn’t have too much now would we? One of the most common things we do with PHP, or any other web based programming language for that matter, is to generate HTML on the fly using logic and conditions. As we know, HTML makes use of angle brackets and other characters to provide a means to the browser to render a web page. HTML has some special reserved characters that you need to watch out for since they have a specific meaning to HTML.

< and >

Here they are, the < and > characters. These two characters are what surround the html tag names in the page. This is what instructs the browser that hey, something really interesting is happening here and you need to interpret the information between these tags as such. These angled brackets also denote that the data within them is not to be outputted to the page in human readable form. Though the web browser sees something like <b>this bold text</b>, the user should see this bold text. Two different encoding styles with two different meanings.

HTML Reserved Characters

There are four main characters that are reserved in HTML which we need to pay close attention to. Here is a table that outlines them all.

Character

Encoding

<

&lt;

>

&gt;

&

&amp;

"

&quot;

What this means is that when you would like your users to see the literal character, you need to provide the coded version. Maybe you would like to say something like Twitter is greater than Facebook, and use the greater than sign. In the actual html will be Twitter is &gt; Facebook, however the user will see the actual Twitter is > Facebook displayed. If this or any of the other reserved characters are not properly encoded, you run the risk of causing your page to not display to the user.

htmlspecialchars($string)

First up we’ll examine the use of htmlspecialchars. It might make sense to observe a broken scenario, and then we’ll look at the solution using htmlspecialchars. Suppose we want to include a link with specific anchor text. The anchor text we’d like to display is <Click Here> & Prosper! So you figure, ok easy enough, we can just place this text we like in between anchor tags and create our link. Let’s try it.
& Prosper!
Do you see what that is right there? That right there, is a bit fat fail. The page didn’t display the text we wanted at all. The reason for this is because the browser comes along and sees those angled brackets and thinks that it is dealing with an HTML tag. In this case however, it is not HTML at all. It is the actual angled brackets that we want the user to see in the text of the link. It is times like this that htmlspecialchars comes to the rescue! Observe!
<Click Here> & Prosper!
Nice! Now that link text is working as designed. Think of the htmlspecialchars as a method to disable HTML so to speak. It disables the HTML to the browser and allows the user to see what the browser normally sees. A key point of note is that htmlspecialchars only handles the four reserved characters listed in the table above. Now you may know that there are a rather large collection of symbols that we might want to display in the text of our HTML which the browser will not know how to render. Things like Trademark symbols, Copyright Symbols, At signs, and many more. In this case, you need to bust out the big dog, the htmlentities function.

htmlentities($string)

The htmlentities function covers all characters that have an equivalent html entity representation in the language. Therefore, htmlentities is much more powerful. To illustrate this, we’ll try to enter in some of the more common special characters that you might want to have in your webpage. Let’s try it out.
This might display on some devices, however you may get just a string of really strange hieroglyphic looking type characters. To be safe, you should wrap any text that has special characters into the htmlentities function like so.

© ® ™ £ € ¥


URL Encoding Meets HTML Encoding

It’s time to level up friends. Now that we have a good grasp of URL encoding from our last episode, as well as the fundamentals of html encoding via this action packed tutorial, we can put the whole picture together to see how this works. This will sum up our learning of URL as well as HTML encoding.
The result is a nicely encode URL with and special characters or entities accounted for which is epic!

Handy HTML Entity Table

If you ever need a good reference for all of the HTML entities you can use, here is a list of them. This list is good for being aware of characters that should be run through the htmlentities function as well.
Various ASCII Character entities.
Symbol Encoding
À &Agrave;
Á &Aacute;
 &Acirc;
à &Atilde;
Ä &Auml;
Å &Aring;
Æ &AElig;
Ç &Ccedil;
È &Egrave;
É &Eacute;
Ê &Ecirc;
Ë &Euml;
Ì &Igrave;
Í &Iacute;
Î &Icirc;
Ï &Iuml;
Ð &ETH;
Ñ &Ntilde;
Ò &Ograve;
Ó &Oacute;
Ô &Ocirc;
Õ &Otilde;
Ö &Ouml;
Ø &Oslash;
Ù &Ugrave;
Ú &Uacute;
Û &Ucirc;
Ü &Uuml;
Ý &Yacute;
Þ &THORN;
ß &szlig;
à &agrave;
á &aacute;
â &acirc;
ã &atilde;
ä &auml;
å &aring;
æ &aelig;
ç &ccedil;
è &egrave;
é &eacute;
ê &ecirc;
ë &euml;
ì &igrave;
í &iacute;
î &icirc;
ï &iuml;
ð &eth;
ñ &ntilde;
ò &ograve;
ó &oacute;
ô &ocirc;
õ &otilde;
ö &ouml;
ø &oslash;
ù &ugrave;
ú &uacute;
û &ucirc;
ü &uuml;
ý &yacute;
þ &thorn;
ÿ &yuml;
Various ISO-8859-1 HTML entities.
Symbol Encoding
  &nbsp;
¡ &iexcl;
¢ &cent;
£ &pound;
¤ &curren;
¥ &yen;
¦ &brvbar;
§ &sect;
¨ &uml;
© &copy;
ª &ordf;
« &laquo;
¬ &not;
­ &shy;
® &reg;
¯ &macr;
° &deg;
± &plusmn;
² &sup2;
³ &sup3;
´ &acute;
µ &micro;
&para;
¸ &cedil;
¹ &sup1;
º &ordm;
» &raquo;
¼ &frac14;
½ &frac12;
¾ &frac34;
¿ &iquest;
× &times;
÷ &divide;
HTML entities for Math Symbols.
Symbol Encoding
&forall;
&part;
&exist;
&empty;
&nabla;
&isin;
&notin;
&ni;
&prod;
&sum;
&minus;
&lowast;
&radic;
&prop;
&infin;
&ang;
&and;
&or;
&cap;
&cup;
&int;
&there4;
&sim;
&cong;
&asymp;
&ne;
&equiv;
&le;
&ge;
&sub;
&sup;
&nsub;
&sube;
&supe;
&oplus;
&otimes;
&perp;
&sdot;
Greek Letters and their HTML Entities.
Symbol Encoding
Α &Alpha;
Β &Beta;
Γ &Gamma;
Δ &Delta;
Ε &Epsilon;
Ζ &Zeta;
Η &Eta;
Θ &Theta;
Ι &Iota;
Κ &Kappa;
Λ &Lambda;
Μ &Mu;
Ν &Nu;
Ξ &Xi;
Ο &Omicron;
Π &Pi;
Ρ &Rho;
Σ &Sigma;
Τ &Tau;
Υ &Upsilon;
Φ &Phi;
Χ &Chi;
Ψ &Psi;
Ω &Omega;
α &alpha;
β &beta;
γ &gamma;
δ &delta;
ε &epsilon;
ζ &zeta;
η &eta;
θ &theta;
ι &iota;
κ &kappa;
λ &lambda;
μ &mu;
ν &nu;
ξ &xi;
ο &omicron;
π &pi;
ρ &rho;
ς &sigmaf;
σ &sigma;
σ &sigma;
τ &tau;
υ &upsilon;
φ &phi;
χ &chi;
ψ &psi;
ω &omega;
ϑ &thetasym;
ϒ &upsih;
ϖ &piv;
Other Various HTML entities.
Symbol Encoding
Œ &OElig;
œ &oelig;
Š &Scaron;
š &scaron;
Ÿ &Yuml;
ƒ &fnof;
ˆ &circ;
˜ &tilde;
&ndash;
&mdash;
&lsquo;
&rsquo;
&sbquo;
&ldquo;
&rdquo;
&bdquo;
&dagger;
&Dagger;
&bull;
&hellip;
&permil;
&prime;
&Prime;
&lsaquo;
&rsaquo;
&oline;
&euro;
&trade;
&larr;
&uarr;
&rarr;
&darr;
&harr;
&crarr;
&lceil;
&rceil;
&lfloor;
&rfloor;
&loz;
&spades;
&clubs;
&hearts;
&diams;

0 comments:

Post a Comment