here is the code. to more clearify my question
Page1.php
Code: Select all
<form method=post action="info.php">
<b>:: Shirt Information :: </b><Br><br>
Color<br><input type=text name=color><Br>
Size<br><input type=text name=size><Br>
<Br>
Quantity<br>
1<input type=radio name=qty>
2<input type=radio name=qty2>
3<input type=radio name=qty3>
4<input type=radio name=qty4>
<Br><br>
<input type=submit value=sumbit>
</form>info.php
Code: Select all
echo "Color: ".$_POST['color']."<br>";
echo "Size: ".$_POST['size']."<br>";waitnig for hopefull reseponse
SaQib