URLENCODE: Difference between revisions

From Dark Signs Online
Jump to navigationJump to search
(Created page with "''string'' '''URLENCODE'''(''string'' message) Returns the given string URL encoded. == Parameters == ''message'' String to URL encode. == Example == <pre>$i = "a b" $i = URLENCODE($i) SAY $i // Prints "a+b"</pre>")
 
(No difference)

Latest revision as of 06:42, 19 March 2024

string URLENCODE(string message)

Returns the given string URL encoded.

Parameters

message String to URL encode.

Example

$i = "a b"
$i = URLENCODE($i)
SAY $i // Prints "a+b"