Hi,
i am posting data from a.php to b.php;
a.php is something like this
b.php is something like this
so i have a doubt here.Because i am destroying session in b.php, does it destroy form data that is coming from a.php also or the form data(of a.php) will be intact and available after the first two lines in b.php(even after destroying session).
i am posting data from a.php to b.php;
a.php is something like this
Code:
<html> <head> <body> <form method="post" action="b.php"> </form> </body> </html>
Code:
<? session_start(); session_destroy(); //i will get data here using $_post functions ?>
Comment