Featured
-
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Best 5 Lightweight PHP Frameworks for REST APIs Development
Are you ready to develop the Rest AP
by ankur.kumar -
PHP: Full-Stack Framework vs Micro Framework
A web framework can be described as a software fra
by ankit.bhatia -
How to get facebook profile picture by Facebook App
If you would like to get your profile picture in f
by vivek.rastogi -
Creating RESTful API in cakephp
This tutorial will help you to learn how to create
by pushpendra.rawat
Tags
Discussion on read and write Session in Cakephp 3.0
Hi Reader's,
Welcome to FindNerd, today we are going to discuss on read and write Session in Cakephp 3.0
Sessions is used for allowing you to identify unique users and session also allow to you requests and store persistent data for speci...
Customize Flash message in Cakephp 2
Customize Flash message in Cakephp 2
If you want to customize flash message, and want to integrate your own alert flash box, then you can do this by SessionComponent method.
Step 1 : First of all you need to include the session co...
How would you create Sessions in Cakephp
Hello readers , this is a small blog on session in cakephp.
Sessions are the most useful and important function of PHP. I think Sessions are used in every website. Sessions can be used in e-commerce website, job portals, payroll systems ...
Session
To make the data accessible across the website we need to use session.
Session create a temporary file on the server where the registered data is stored and the data is made available to all pages.
The location of the temporary file is dete...
Cakephp 3.0: How to read and write Session
How to read and write session:
Yes this is the basic question in which I got stuck when I was new to cakephp 3.0. I tried to find out the answer through google, stackoverflow and I finally found the answer to it. In order to read and write ses...
DIFFERENCE BETWEEN SESSION AND COOKIE
SESSION-
A session contains user information on server side. When a user opens a page, then the information is first transferred to the server, then php will match that information to the server-side cookie.
If the browser is closed once, a...
Different type of Session function in php
session_start();
It Start new session or resume existing session or the current one based on the session identifier passed via any request like $_get and $_post. When a session start php will call the open and read the session handlers.User can ...
How to Create and Use Cookies in PHP
Cookies are basically small text files that is stored in browser and it is use for tracking purpose.
Cookies are also use for remember me functionalities.
Setting Cookies with PHP
setcookie(name, value, expire, path, domain, security);
...
How you can stop the re submit of form using Unique id of form
Hello Reader's!, If you need a nice method to stop the form from again and again submit via refresh, PHP offers you many ways like header redriect or unset the $_POST but a pretty way is to implement a unique ID into the post and cache it in the...
How to use session in php. ?
Firstly let us know what is session ?
Session variables hold information about one single user, and provide to all pages information in one application.
So, session basicallu store informatiom in a variable and provine in multiple page for a ...
How to expire a PHP session after 30 minutes?
Setting the session creation time (or an expiry time) when it is registered, and then checking that on each page load could handle that.
Example:
$_SESSION['example'] = array('foo' => 'bar', 'registered' => time());
if ((time() - $...
How to destroy user session automatically in PHP if he don't log out
Hello Reader's!
If you have to destroy or unset the user's session automatic then the better way is to set with time dependency
session_start();
if (!isset($_SESSION['EXPIRES']) || $_SESSION['EXPIRES'] < time()+1800) {
session_destr...
Difference in using session_unset() and session_destroy() in PHP
For just the functioning part both the syntax will work the same but by writing session_unset will clears the $_SESSION variable but will not destroy the variables and it will initialize to this stage:-
$_SESSION = array();
session_destro...
How to check if user's session is already started in PHP
If you want to know weather the session is already begin or not in PHP then, you can use of the syntax from PHP manual
see the example below
if (!isset($_SESSION)) session_start();
2.
And in case you are using PHP < 5.4 you hav...
CakePHP: Call to a member function setFlash() on a non-object
Hello Readers,
We have a session helper in cakephp which is known as setFlash() basically use for showing messages after login successfully , user registration etc.
First of all we have to assign the session helper in Controller.
Code us...
Using database session handling in Code PHP
PHP is one of the scripting language. In which session handling is one of the key thing mostly using in web application.
Suppose you build a website and allow to login everyone in website, You need to track user every step until they log out o...
Learn How To Do Logout using PHP Session
/* A PHP session variable is used to store information about, or change settings for a user session. Session variables hold information about one single user, and are available to all pages in one application.*/
Two things are to be kept in mi...