Send post DATA is not working on my form

  • JanSpijkerman
    Asked on February 5, 2016 at 7:15 AM

    I cleared the form cache.

    I enabled Send Post Data

    I redirected in the thank you page tot my php file containing :

     

    <html>

    <body>

    <?php $var1=$_POST["sloepNaam"] ?>

    <?php $var1=str_replace(" ","",$var1) ?>

    <?php $var2=$_POST["teamNaam"] ?>

    <?php $var2=str_replace(" ","",$var2) ?>

    <?php $var3=$_POST["kostenMaaltijden"] ?>

    <?php $var3=str_replace(".","",$var3) ?>

    <?php header( "Location: http://e-acceptgiro.nl/104901/5a46/$var1:$var2/$var3" )?>  

    </body>

    </html>

    But it seems there is no data send to my php file

     

    Can you help me to solve this problem.

     

    Jan Spijkerman

  • Charlie
    Replied on February 5, 2016 at 9:15 AM

    You can check the following guides that will help you on how to fetch the post data sent by your form:

    Send POST DATA in your Custom Thank You page 

    Send POST DATA to your MySQL database using PHP 

     

    You can also easily get the PHP variables by following this guide: http://www.jotform.com/help/51-How-to-Post-Submission-Data-to-Thank-You-Page. You can take note of them and use them in your PHP file.

    I hope that helps.