<html>
<head>
<title>
Input Records
</title>
</head>
<?php
if(isset($_GET['submit']))
{
$db = mysql_connect('localhost', 'JJGV', 'it213');
mysql_select_db('project') or die( "Unable to select database");
$studno = $_GET['studno'];
$fname = $_GET['fname'];
$lname = $_GET['lname'];
$course =...