Answers for "ISSET post in php request"

PHP
2

isset submit in php

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

php isset post

if (!empty($_POST["mail"])) {
    echo "Yes, mail is set";    
} else {  
    echo "No, mail is not set";
}
Posted by: Guest on June-06-2020

Browse Popular Code Answers by Language