PHP Session Example
The previous post was about PHP Session There explained about session its purpose and syntax in detail. Let’s see one good example of the session. User login system1. connection.phpThis page is used to establish a database connection from the application. 2. index.phpThis page retrieves the user detail from the database query($sql); $num = $res->num_rows; if($num!=0) … Read more