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.
When submitting
Moderator: General Moderators
Re: When submitting
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
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']){
}