[Solved] PHP – What is wrong with this? [closed]


You miss a semicolon at the end of line #28:

$data = "<h1>". $ip . "</h1>"...

This kind of error:

Parse error: syntax error, unexpected T_ECHO.. usually notifies a certain line number, but when it happens you should always look at the line PRIOR to the one you are getting an error on.

Please now consider seeing the Help -> Tour otherwise you’re going to be considered off topic.

1

solved PHP – What is wrong with this? [closed]