Collection Contents Previous Next PDF

ASA SQL Reference

SQL Functions

Alphabetical list of functions

HTML_ENCODE function


Function 

Encodes special characters within strings to be inserted into HTML documents.

Syntax 

HTML_ENCODE ( string )

Parameters 

string    Arbitrary string to be used in an HTML document.

Standards and compatibility 
Usage 

This function returns the string argument after making the following set of substitutions:

Characters Substitution
" "
' '
& &
< &lt;
> &gt;
codes nn less than 0x20 &#xnn;
See also 
Example 

Collection Contents Previous Next PDF