concatination error
Posted: Wed Aug 09, 2006 4:28 pm
im getting the error
Parse error: parse error, unexpected T_CONCAT_EQUAL
for this block of code
specifically line 144 which is
but i dont know why...i looked over it like five times....please help
Parse error: parse error, unexpected T_CONCAT_EQUAL
for this block of code
Code: Select all
if(@is_array($errors))
{
$message_2 = "";
foreach($errors as $value)
{
message_2 .=$value." Please try again<br />";
}
include("fields_login.php");
include("double_form.php");
exit();
}Code: Select all
message_2 .=$value." Please try again<br />";