I need to check if $_POST variables exist using single statement isset.
$_POST
if (isset$_POST[\'name\'] && isset$_POST[\'number\'] &&am
Use Array to collect data from form as follow:
and process your form on post as below:
if(isset($_POST['name'])){ ... }