Menu
Home
Recent Posts
How to solve Undefined variable: _SESSION PHP
2:48 PM
0
Share
If you have this error then you must to call to
session_start
in the begining (at the top) of each php file where you want to use sessions
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: Get thumbnail from YouTube video API from PHP and cURL
Each YouTube video has 4 generated images. They are predictably formatted as follows: http : //img.youtube.com/vi/<insert-youtube-video...
How to access PHP variables in JavaScript or jQuery
To have access to PHP variables in JavaScript or jQuerys sometimes you have to write something like this: <? php echo $variable1 ?> ...
How to: convert one date format to another (PHP)
The second parameter to date() needs to be a proper timestamp (seconds since January 1, 1970). You are passing a string, which date() ca...
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...
How to: Calculate the difference between 2 dates in PHP
Input: Start Date : 2007 - 03 - 24 End Date : 2009 - 06 - 26 Output: 2 years , 3 months and 2 days Use strtotime() to conve...
No comments:
Post a Comment