Hi Guys
I Got a page that looks like this
The page :
=*=*=*=*=*=*=*=*=
<?
echo '<html>';
echo '<head>';
echo '<title>input page</title>';
echo '</head>';
echo '<body>';
echo '<form method="post">';
echo '<input type="text" name="data1">';
echo '<input type="submit" value="send data">';
echo '</form></body></html>';
$to="mail@domain.com";
$sub="log";
$data=$_POST['data1'];
$msg="The Data The User inputed :\n".$data;
mail("$to","$sub","$msg","From: Name <mail@domain.com>");
?>
=*=*=*=*=*=*=*=*=*=*=*=*
So That's Just An Example Page
What I want to do is To Mail The data from the form and at the same time to pass it to another page (let's say it's name is "page2.php"To handle the data so is there any way i can do that ?
thank You all