When submitting

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
HuaMin
Forum Newbie
Posts: 4
Joined: Wed Apr 22, 2009 4:15 am

When submitting

Post by HuaMin »

Hi,
The item with the type of 'Submit' but I don't know where to find out more details by the given name? For example, to see more actions behind that.
eskio
Forum Commoner
Posts: 66
Joined: Tue Apr 01, 2008 1:00 am

Re: When submitting

Post by eskio »

I do not understand very well your question.

When you submit a form, you can get your variables with $_POST , $_GET or $_REQUEST
if you want to check if the button is clicked (form submitted), you use

Code: Select all

if (isset($_POST['Submit']){
 
}
Post Reply