| |
winkumpel
Posts: 11
Score: 0
Joined: 5/23/2001
From: Netherlands
Status: offline
|
HTMLencode converts strings to HTML-safe strings. So < becomes <, etc. Usually you use this function on input data, like posts made here. server.htmlencode("string") encodes the literal 'string' server.htmlencode(string) encodes the contents of the variable named string.
|
|