MySQL Forums
Forum List  »  PHP

Re: Embarrassing Newbie Question
Posted by: Peter Brawley
Date: June 29, 2018 08:22PM

> how a specific VALUE that is entered into a FORM-FIELD can be sent to a .php script

The form's method tag, <form) ... action= ... method=... </form>, specifies where user input values go when the user clicks the Submit button, usually 'GET', in which case they appear on the command line and in the $_GET associative array, or 'POST', in which case they do not appear on the cmdline, and appear in the $_POST associative array.

But there's much more to it than that. You need to read about html forms, then read about PHP design and coding of html forms, then work through a few of the many good web tutorials on PHP forms.

(Jejune messages to the user btw.)

Options: ReplyQuote


Subject
Written By
Posted
Re: Embarrassing Newbie Question
June 29, 2018 08:22PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.