https://dev.webpages.dk/ |
|
PHP How to Use ISSET()
PHP How do you Use Multiple Submits: To be able to distinguish between submit buttons in the same <FORM> you can use ISSET. In the ISSET you simply state the name of the submit button. Here is an exemple of how the snip can look like: if (isset($_POST['show1'])) {code here} |
|
Icons made by Freepik from www.flaticon.com | The way to use ISSET, for being able to have more submits in same <FORM> |
|