i have created a html document shown below, however i am having trouble with the mysql coding to make the values from the form update my mysql database. Can anyone help me on how to go about this please?
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head> <body>
<h1>Hello World!</h1>
<h1>Submit your notices below:</h1>
<form name="messages" action="teacher1messages.jsp" method="POST" enctype="multipart/form-data">
<h1>Username:</h1>
<input type="text" name="username" value="eg.cs09kkk1" />
<h1>Date of notice:</h1>
<input type="text" name="date" value="dd/mm/yy" />
<h1>Notice:</h1>
<textarea name="message1" rows="4" cols="20">
[Type your notices here]
</textarea>
<input type="submit" value="submit" name="submit" />
<h1>Acknowledgment:</h1>
<input type="text" name="acknowledgment" value="" />
</form>
</body>
</html>
this is the sql update coding i have tried however it just updates the table in my database as null null, rather than the user input values
--%><sql:update var="messages" dataSource="jdbc/noticeboard">
INSERT INTO messages (username, postedon, message, acknowledgment)
VALUES ('$_POST[username]','$_POST[date]','$_POST[message1]','$_POST[acknowledgment]')
</sql:update>

