Code: Select all
<input type="radio" name="radiobutton" ID="Radio1" value="NA" >
<font size="2" face="Arial, Helvetica, sans-serif">New Account
<input type="radio" name="radiobutton" ID="Radio2" value="RA">
Repair Account
<input type="text" name="fname" ID="Text1">Code: Select all
<?php
$Acccount = $_POST["radiobutton"];
$First = $_POST["fname"];
echo "Account NAme is:".$Account;
echo "First Name is:".$First;Any help is appreciated