fork download
  1. <?php
  2.  
  3. $_POST['nome'] = 'justin';
  4.  
  5. if(isset($_POST['nome']) && !empty($_POST['nome'])) {
  6.  
  7. echo "isset and !empty";
  8.  
  9. }
  10.  
  11. ?>
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
isset and !empty