Hi Wilku,
Thanks for the answer. Here is what I've done:
foreach($VARS as $key=>$value)
{
if(is_array($value)) $VARS[$key]=explode(' ',$value);
echo $FIELDS.="$key : ".$VARS[$key]."\r\n";
}
I get the following output from the fields in my form:
Attending_ESC_Congress : Array
Last_Name : Emmanuel
First_Name : Dauksa
Attending_ESC_Congress is a checkbox in my box and contains the value Yes once it's checked. Somehow there is a parsing of the checkbox that transforms it as an array. Would you know how I can read the value instead of getting array?