On Wed, 28 Mar 2001 13:44, chris herring wrote:
> > I got a question here. How would you go about calling variables from a
> form. I'm sure this is super-easy, but I'm a newbie. Any help would be
> greatly appreciated.
Just prefix the form object names with $
Say you have a text box set up like so:
<FORM ACTION=check.php METHOD=GET>
<input type="text" name="avail" value="">
<INPUT TYPE=SUBMIT>
</FORM>
and in check.php
<?php echo $avail; ?>
will show the value entered in the text box
--
David Robley | WEBMASTER & Mail List Admin
RESEARCH CENTRE FOR INJURY STUDIES | http://www.nisu.flinders.edu.au/
AusEinet | http://auseinet.flinders.edu.au/
Flinders University, ADELAIDE, SOUTH AUSTRALIA
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]