Appnitro Software Forums » MachForm

How to send form data as php parameter ??

(2 posts)

  1. hangrun
    Member

    Hi
    I have a form with severeal input fields:

    I want to send all the data to a page, that creates a PDF out of the entered data

    (1) Here is the Form: http://web422.login-1.hoststar.at/machform/view.php?id=1

    (2) This should be the result after submitting (demo data)

    http://web422.login-1.hoststar.at/schnappchen/tcpdf55/examples/schnaeppchen04.php

    How can I send all the form data to the PHP (2) as parameter to be able to create the barcodepage ??
    (my.php?field1=bla&field2=blbbla ....)

    best regards Hannes

    Posted 1 year ago #
  2. You can use the same method as posted here:
    http://www.appnitro.com/forums/topic/aweber-integration?replies=13

    The code in the sample above is using POST:

    HttpClient::quickPost($target_url, $target_data);

    In your case, you'll need to change it to use GET, like this:

    HttpClient::quickGet($target_url, $target_data);

    That would send the form data as GET parameters.

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.