Re: Passing a url-specified value through a form



Phil wrote:

In script one
============
<input type="hidden" name="machineid" value="<?php echo $mid; ?>">


In script two
============
$webmaster_subject = "Ticket from " . $_REQUEST['machineid'] . ": " .
$_REQUEST['probsummary'];


in script two, have you tried $HTTP_POST_VARS['machineid'] instead of
$_REQUEST['machineid'] ?

-sami
.