i am using PHP 4.3.0 / PWS. trying to pass form variable to a form handler using POST. But the problem is php is giving a error message variable not defined . Pls help !
the following is the form
<form method="POST" action="php/message_handler.php">
<table border="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" cellpadding="0" id="AutoNumber4" width="552">
<tr>
<td width="552" bgcolor="#F3F3F3" align="center"><b>
<font face="Arial Narrow" size="2">Please enter the Message details below</font></b></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber5" width="551" height="1">
<tr>
<td width="84" height="22"><font face="Arial Narrow">Title</font></td>
<td width="467" height="22"><font face="Arial Narrow">
<input type="text" name="intitle" size="65"></font></td>
</tr>
<tr>
<td width="84" height="1"><font face="Arial Narrow">Message</font></td>
<td width="467" height="1"><font face="Arial Narrow">
<textarea rows="4" name="submsg" cols="55"></textarea></font></td>
</tr>
<tr>
<td width="84" height="1"><font face="Arial Narrow">Submitted By</font></td>
<td width="467" height="1"><font face="Arial Narrow">
<input type="text" name="subby" size="65"></font></td>
</tr>
</table>
<p align="center" style="margin-top: 0; margin-bottom: 0">
<input type=submit>
<input type="reset" value="Reset" name="B2"></p>
</form>
the following is the handler
<html>
<head>
<title> handler </title>
</head>
<body>
<%
$sql="insert into msg_table (msg_sub,msg_txt,sub_by,sub_dt) values('$intitle','$submsg','$subby',to_date('14-07-2003','dd-mm-yyyy'))";
include("get_data.inc");
%>
</body>
</html>