session in php this example show how to set session in php.

<?php
session_start();
$_SESSION['u']=$_post['name'];
$_SESSION['p']=$_post['pass'];
echo "welcome".$_SESSION['u']."<br/>";
echo "ur password is".$_SESSION['P'];
?>

Popular posts from this blog

Simple Sign up design. Android.

Cart page design in android.

Set Date on jDateChooser and retrieve record from database.