Support

Account

Home Forums General Issues Echo Form Field Values via $_POST Reply To: Echo Form Field Values via $_POST

  • Hi @markkelly1982

    Always test data before asuming it exists.

    Test like this:

    
    <?php 
    
    echo '<pre>';
    	print_r($_POST);
    echo '</pre>';
    die;
    
    ?>