Please somebody help me how to get the values of Radio Button arrays. here are my codes
<?php include("conn.php");
$query = "SELECT * FROM pointsprof, subject WHERE pointsprof.Total >= subject.IM108";
$result = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_array($result) or die(mysql_error());
do {echo '<form action="subjectload.php" method="POST" name="theForm" onsubmit="return validateFormOnSubmit(this)">
<form id="form1" name="form1" method="post" action="">
<table width= "200">
<tr>
<td><label>
<input type="radio" name="'.$row['name'].'" value="'.$row['name'].'" id= "RadioGroup1_0" />
'.$row['name'].'</label></td><br/>
</tr>
</table>';} while($row = mysql_fetch_array($result) ?><input type="submit" name="submitType" value="CONTINUE">