I am new to php and I have a problem with the following code:
$ID = $_POST["first_name"]
$EXT = ".html"
$DOMAIN = "blabla.com/membersarea/"
$URL = ($DOMAIN . $ID . $EXT)
header("location: http://".$URL);
Here is the error I'm getting:
Parse error: syntax error, unexpected T_VARIABLE
The error is on line 3:
$EXT = ".html"
So my question is: is the error because of a point in a php variable?