Hi
There are 2 php pages. index1.php and index2.php
In index1.php, there are 2 parameters got from textbox which need to be sent to index2.php
<input type="submit" name="submit" value="Submit" />
<?
if(isset($POST['submit']))
{
// index2.php?varA=testbook&varB=testpaper;
}
?>
in index2.php,
if(isset($GET['varA']) && isset($_GET['varB']))
{
$A=varA;
$B=varB;
}
How should I do that in both php files?