Script 1:
<form name="myform" method="post" action="script2.php">
<input type="hidden" name="codename" value="blah">
...other form stuff as necessary...
</form>
Submit the form.
Script 2:
Access the data passed in the hidden field as $_POST["codename"].
For example, echo $_POST["codename"];
Rich
> -----Original Message-----
> From: Robbie Staufer [mailto:[EMAIL PROTECTED]
> Sent: Thursday, February 26, 2004 3:21 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-DB] passing parameter to function
>
>
> Hi,
>
> Say I have a script that knows the value of a variable $codename.
> The script contains a function that needs to know the value
> of $codename.
> What is the syntax for passing the parameter to the function?
>
> Example: the script knows that $codename = blah. The
> function has to
> pass 'blah' on to another script as a hidden value in a form
> using the
> POST method. The other script is not receiving the value of
> $codename.
>
> Thanks for any help.
> Robbie
>
> --
> -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
> Robbie Staufer
> NCAR/SCD
> 1850 Table Mesa Dr. Rm. 42
> Boulder, CO. 80305
> (303) 497-1836
>
> --
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php