I'm a newbie...the following mysql_fetch_array worked fine to print out the array element...
<?while ($Row = mysql_fetch_array($Result))
{print ("<td>Teacher Name: $Row[teacher_name]</td>\n");}?>
But, how do I assign a $variable to the array element (not the entire array) so that I can pass it on to my form handler?
Any help would be appreciated...Thanks!