php
embluk
·
isset Post Check
·
PHP
·
Total Size: 217 B
·
·
Created: 4 years ago
·
Edited: 4 years ago
<?php
if(isset($_POST["email"]) && !empty($_POST["email"]))
{
return true;
}
else
{
return false;
}
Make sure to check your incoming POST or GET variables before you try and use them :)
1 bit
•
1828 views
Are you sure you want to delete?