|
Posted by j0sh on 12/28/05 22:11
mananvyas@gmail.com wrote:
> Hi All,
>
> I am developing a kind of application where i want to retain the last
> visited page. My problem is, because of number of parameters are to
> large, that is possible to send all the infomation passing through URL
> using get method, so i am sending some of the information using post
> method, so i can't do it using just getting the url.
>
> Can anybody give me idea that how can i get the last visited page in
> this case.
> Again i would like to repeat that i am sending some of the information
> using post method.
save $_POST array in $_SESSION
ex. $_SESSION['post']=$_POST
then you can retrieve information with a foreach if $_SESSION['post'] is
not null
--
http://josh.pixael.com
Navigation:
[Reply to this message]
|