You have:
[font=courier new]<input type="radio" name="grade" value="9" />[/font]
When you POST this to a PHP script, you will then have $POST['grade'], which has the value 9. You can then use:
[font=courier new]$path = 'public_html/scn/' . $POST['grade'];[/font]
But be aware that, since this is user input, you should probably check that it's a number, or you open a potential security hole:
$grade = intval($_POST['grade']);
$path = 'public_html/scn/' . $grade;