Forum Moderators: coopster
the main.php is the interface of the page...second.php is the processing script for process the data..so how do it pass the value from main.php to second.php? any idea? any example of this?
Thanks.
if(isset($_POST['senddata']))
{
$variable = $_POST['textboxdata'];
$othervariable = $_POST['othertextbox'];
myfunction($variable, $othervariable);
}