I have this simple form which shows a pop up calendar when clicked on
<form action = "test2.php" method = "post" onsubmit="jValidate(this);">
<input type="text" name="inputField" size="12" id="inputField"/>
</form>
Mentioned below are my test2.php codes
<?php
$d = $_POST["inputField"];
echo($d);
?>
However all I am getting is a blank screen.
Put these lines on top of your page and you should see errros/problems instead of blank page (fatal error):
Update
This should put your notice message away: