Well I am trying to populate the Input a field named 'details' from the data in the PHP section. Then I want that string to be used by page2. Neither of these two functions are working. My form has a field on it called unixid and the user enters their ID in this field. Then they click the logticket button. They get to page2 but the string does not fill in the field.
Here is all my data for page1 if it helps:
<html>
<head>
<title>Ticket for USCO Unix Group</title>
</head>
<body>
<FORM method="POST" action="NewTicket.php">
<CENTER><h3>Enter your Unix ID below and click Ticket to continue.</h3><BR>
<INPUT TYPE="text" NAME="unixid"></CENTER><BR><BR>
<?PHP
$unixid = $_POST['unixid'];
$details = "Unix ID is $unixid";
$details .= "\n USCO Connecticut UNIX group needs to be contacted. This user needs their UNIX password reset.";
?>
<INPUT TYPE="hidden" Name="details"> //I eventually want this field to be hidden from the user.
<INPUT type="submit" name="logticket" value="Ticket"><BR><BR>
</FORM>
</body>
</html>
I've also changed the details field line to:
<INPUT TYPE="text" Name="details" VALUE="<?PHP echo $details?>"><BR>
And this doesn't get populated either.