I am trying to get a form to call a php page that will process the results. However, I cannot even get it to print out the URL Field value. Here is the code:
Form Page:
<html>
<head>
<title>Untitled</title>
</head>
<body>
<form action="formresults.php" Method="POST">
Issue:<br>
<input type="Text" name="issue" size="100" maxlength="300">
<br>
<input type="submit" value=" Preview Notification ">
<input type="RESET" value="Clear Form">
</form>
</body>
</html>
Form Results Page:
<html>
<head>
<title>Untitled</title>
</head>
<body>
Issue: <?php
$issue
?>
</body>
</html>
It doesn't print out the value. Please tell me what I am doing wrong?
Thanks,
Craig