Programming Logics FORUMS

Full Version: PHP + Html?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm having a hard time with php code and html code in one. I know you can have something like
html code here...<? php code here ?> and than more html code here....

But i keep getting a syntax error, why?
No i don't, this is what it fully says...

Parse error: syntax error, unexpected $end in C:\wamp\www\Work\surveyGuide.php on line 201

and it points to my end thing ?>
See it goes <? php code ?> and than html....<?php code ?>
n PHP 5, the following error may appears as an error entry in Apache error log or simply displays on PHP web page, even if calling to php scripts with php_info() works perfectly and successfully returns information on PHP configurations:

Parse Error: syntax error, unexpected $end in ….. scripts.php on line …

The error may caused by a missing curly bracket in PHP script coding. Beside, it may also caused by error in PHP coding in class definition, as in PHP, a class definition cannot be broke up and distributed into multiple files, or into multiple PHP blocks, unless the break is within a method declaration.

But more commonly, the error is often caused by the use of Short Open tags in PHP
Reference URL's