WB_Separator - character used to separate different keys and different values for WF command

Syntax
WB_Separator=separator character

Syntax example
WB_Separator=;

Valid inputs
Any character

Default value
none

Description
This variable contains the character which will be used to separate different entries in the WB_Keyname and WB_KeyValue variables. This variable is required if WB_Command value is WF, and it is ignored in all other cases. Following example shows how it should be used:

[FormFields]
WB_KeyName=Airpressure|Temperature|Humidity
WB_KeyValue=$wbv{fAirP};|$wbv{fTemp};|$wbv{fHum};
WB_Separator=|
WB_Section=$wbfn{fdt(dd-mmm-yyyy hh:mm)}
WB_FileName=Weather.cfg
WB_Command=WF
<!--WB_BeginTemplate-->
<html>
<body>
Values sucessfully modified!
</body>
</html>

And this is what might be the result written in file Weather.cfg upon calling this script using following form field values < B>-fAirP=1034&fTemp=20&fHum=85:
[16-sep-2008 15:05]
Airpressure=1034;
Temperature=20;
Humidity=85;