Menu
Home
Recent Posts
How to solve: Parse error: syntax error, unexpected T_XXX
5:35 PM
0
Share
This happens when you have T_XXX token in unexpected place, unbalanced (superfluous) parentheses, use of short tag without activating it in php.ini, and many more.
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Development and programming answers
Search articles
Popular Posts
PHP: Check if string contains specific word
You can use the strpos function which is used to find the occurrence of one string inside other: if ( strpos ( $a , 'are' ) !== ...
How to solve: Warning: [function]: failed to open stream in PHP
It happens when you call a file usually by include , require or fopen and PHP couldn't find the file or have not enough permission ...
How to solve: Parse error: syntax error, unexpected T_XXX
This happens when you have T_XXX token in unexpected place, unbalanced (superfluous) parentheses, use of short tag without activating it in ...
PHP: Curly braces strings usage
They're used to escape variable expressions. From Strings : Complex (curly) syntax This isn't called complex because the syntax i...
Applying CSS to an iframe
There are two different things here: the style of the iframe block and the style of the page embedded in the iframe. You can set the style o...
No comments:
Post a Comment