feewosmesia
New Member
.I have three php pages
age1.phppage2.phppage3.phpon page1.php i have this code:\[code\]<form id="try" method="post" action="page2.php">Batch: <input id="batch" name="batch" type="text"/><br />Dept: <input id="dept" name="dept" type="text"><br /><input type="submit" /></form>\[/code\]on page2.php i am able to use the values inserted on page1.php by simply calling them using \[code\]$_POST['batch']; and $_POST['dept'];\[/code\]but what i want to do next is to pass the values of batch and dept from page2.php to page3.php. or maybe from page1.php to page2.php since i think it's just the same..Help pls! Thanks in adv@kjy112 - i'm confused, since i am using \[code\]<form method="post"> \[/code\]should i be starting my session on page2.php by using the following:\[code\]session_start();$_SESSION['batch'] = $_POST['batch'];$_SESSION['dept'] = $_POST['dept'];\[/code\]and then use\[code\]session_start();$batch = $_SESSION['batch'];\[/code\]to use it on page3.php?
