Answers for "how to set isset submit in php"

PHP
1

isset submit in php

if(isset($_POST['submit']){
//Your Code Here
}
Posted by: Guest on April-15-2021
1

php isset form submit

//<form method="post">
//<input type="submit" name="treasure" value="go!">
//</form>

if (isset($_POST['treasure'])){
echo "treasure will be set if the form has been submitted (to TRUE, I believe)";
}
Posted by: Guest on February-24-2022

Browse Popular Code Answers by Language