Anoir
May 17th, 2011, 10:16 AM
I created a VIP Area and the registration folder contains 3 pages, each page has labels or fields if you wanna say, the problem is that i only got the last page infos, yet the first n' second one i dont receive its infos if someone's registered on it,
i used the method of POST, $_POST
For example :
(PAGE 1)
<input name="firstname" maxlength="20" size="20" class="form-input" type="text" validate="required:true , number:true" />
(PAGE 2)
<?
$FirstName .= $_POST['firstname'];
?>
<form method="POST" action="PAGE3.php">
<input type="hidden" name="firstname" value="<?php echo($FirstName); ?>">
(PAGE3)
the same again with page 3 fields
<?
$FirstName .= $_POST['firstname'];
?>
<form method="POST" action="PAGE3.php">
<input type="hidden" name="firstname" value="<?php echo($FirstName); ?>">
Finally I got only the Page3 Posted fields, non of Page1 or Page2 been recieved at all, it comes empty
$message .= "First Name: ".$_POST['firstname']."\n";
Please help me to fix this..
i used the method of POST, $_POST
For example :
(PAGE 1)
<input name="firstname" maxlength="20" size="20" class="form-input" type="text" validate="required:true , number:true" />
(PAGE 2)
<?
$FirstName .= $_POST['firstname'];
?>
<form method="POST" action="PAGE3.php">
<input type="hidden" name="firstname" value="<?php echo($FirstName); ?>">
(PAGE3)
the same again with page 3 fields
<?
$FirstName .= $_POST['firstname'];
?>
<form method="POST" action="PAGE3.php">
<input type="hidden" name="firstname" value="<?php echo($FirstName); ?>">
Finally I got only the Page3 Posted fields, non of Page1 or Page2 been recieved at all, it comes empty
$message .= "First Name: ".$_POST['firstname']."\n";
Please help me to fix this..