Posted by Jerry Stuckle on 03/08/06 14:45
netnews.agilent.com wrote:
> I want to use PHP to process input from a form,
> How can I do it?
>
>
I guess I'm not sure what you're asking. But if you're asking where to
start, it's pretty easy.
Set the action= in your FORM statement to point to the file containing
the PHP. That file will then get control when the user clicks on the
submit button.
Once you get control, the values from the form are in either $_GET or
$_POST global arrays, depending on whether your method was get or post.
Is this what you're looking for?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|