hi i know how to store post
value into session
but how can i store session
value into post.
post
into session
$_SESSION['name'] = $_POST['name'];
$_SESSION['email'] = $_POST['email'];
$_SESSION['mno'] = $_POST['mno'];
$_SESSION['age'] = $_POST['age'];
I have an array stored in session
and i want to store
it into post
.
Can i do this? If yes then how?
I want to store all array
value in post
from session