$WBVSC - multi-value variable separated as QUERY_STRING and URL-encoded

Availability
$WBVSC  is available for use with all WBSP commands:

Syntax
$WBVSC{varname}
$WBVSC[varname]

Parameters
varname - the name of requested variable sent by client as a part of request using either POST or GET method. It can be either WhizBase variable or any other variable sent by client

Returns
The url-encoded values of the multi-value variable varname separated as required for GET request

Example

<!--
[FormFields]
wb_command=r
-->
<!--WB_BeginTemplate-->
<html>
<head>
<title>WBVSC example</title>
</head>
<body>
WBVSC:<br>
id=$WBVSC[id]<br>
WBV:<br>
id=$wbv[id]
</body>
</html>

After running this example (e.g. using GET method: http://localhost/WBVSC.wbsp?id=WhizBase Server Pages&id=Whizbase 3.000&id=WhizBase CGI Engine), the resulting page in browser, may look like this:

WBVSC:
id=WhizBase%20Server%20Pages&id=Whizbase%203.000&id=WhizBase%20CGI%20Engine
WBV:
id=WhizBase Server Pages;Whizbase 3.000;WhizBase CGI Engine