> What combination of functions do I have to use to automatically redirect
> to an .html page (with <form>'s inside), while carrying a variable that
> would be automatically put into one of the <input> boxes, just like a
> predefined "value" would?

Can't do it unless your page "form" page is .php so you can execute some PHP
commands in it, or you're using PHP to write the entire .html page with the
default values.

If you use .php pages for both, then you can just pass the values in the URL

www.page.com/page.php?name=john

and use

<input type="text" name="name" value="<?=$_GET['name']?>">

---John Holmes...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to