I'm getting a unexpected T_CONSTANT_ENCAPSED_STRING error. I can't see what the issue is... anyone able to help???
Jason
Jason
Code:
$msg = "";
foreach($_POST as $key => $value){
if ($value != "") {
$msg .= "^ ". $key ." = ". $value "<br/>\n"; //this is the line that is reported.
}
}