I know I can do this in excell but wanted to make things more exciting. So i have knocked up this form.
From the information there i want to create a csv file.
in the form
Pcode, DOB,Firstname,Lastname,email([email protected]),Pcode,course,group,1.
what would be the language of choise here? php? asp? or should I dabble at java :S.
i want this form to add one person to the csv file. I would like when submit is pressed for the information to be wrote and then the form displayed again with everything blank but if possible the course and group to display what was last entered.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form name="form1" method="post" action="">
<p>P.Code
<input name="Pcode" type="text" id="Pcode">
</p>
<p>FirstName
<input name="Firstname" type="text" id="Firstname">
</p>
<p>LastName
<input name="Lastname" type="text" id="Lastname">
</p>
<p>D.O.B
<input name="DOB" type="text" id="DOB">
</p>
<p>Course
<input name="Course" type="text" id="Course">
</p>
<p>Group
<input name="Group" type="text" id="Group">
</p>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
</body>
</html>
From the information there i want to create a csv file.
in the form
Pcode, DOB,Firstname,Lastname,email([email protected]),Pcode,course,group,1.
what would be the language of choise here? php? asp? or should I dabble at java :S.
i want this form to add one person to the csv file. I would like when submit is pressed for the information to be wrote and then the form displayed again with everything blank but if possible the course and group to display what was last entered.