html_encode (<string>)
string
A string valued converted into a form suitable for an HTML page. Some characters are not permitted in HTML pages without being escaped because they are treated as special by browsers, e.g. <, >, & etc.
<string>
The string to be
encoded.
string s = '<"hello there">' tell html_encode(s) # yields '<"hello there">'
Commands: |
|
Functions: |
html_decode (string) |