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
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 ...
Definitions: stdClass in PHP
stdClass is PHP's generic empty class, kind of like Object in Java or object in Python (Edit: but not actually used as universal base c...
How to upload files asynchronously with jQuery
To upload file asynchronously with Jquery use below steps: step 1 In your project open Nuget manager and add package (jquery fileupload(o...
Objective-C: How to make UIText move up when keyboard is visible
With the iPhone SDK: I have a UIView with UITextFields that brings up a keyboard. I need it to be able to: Allow scrolling of the c...
Understanding the php operators & (ampersand, bitwise and)
& is binary and. If you have a binary value, and you and with another binary value, then the result will be the bitwise and of the two. ...
No comments:
Post a Comment