POST or GET data empty check
I don't want to write function empty() again and again.
Copy this code and paste it in your HTML
<?php
function check_empty
($args=array()) { foreach($args as $arg) {
return false;
}
}
}
?>
Report this snippet
Comments
Subscribe to comments