Results 1 to 7 of 7
  1. #1
    Join Date
    Feb 2002
    Location
    NY
    Posts
    169

    Variables/2checkout??

    When a client makes a purchase, they are sent back to a html page. Now, what I want to do is include in this html file the order number and card holder name. Is this possible? If so, how do I accomplish this?

    The html file is a simple thank you page but also want to include the above variables.
    "To steal ideas from one person is plagiarism; to steal from many is research."

  2. #2
    Join Date
    Jun 2002
    Posts
    146
    A simple html page won't be able to do it. You will need scripting, either php or cgi or (the ugly) asp.

    Look for passback variables on 2checkout's pages.

  3. #3
    Join Date
    Feb 2002
    Location
    NY
    Posts
    169
    I have 2 variables that I want passed to the thank you page.
    How would this be done in PHP?
    "To steal ideas from one person is plagiarism; to steal from many is research."

  4. #4
    Join Date
    Feb 2002
    Location
    NY
    Posts
    169
    Originally posted by a:\
    A simple html page won't be able to do it. You will need scripting, either php or cgi or (the ugly) asp.

    Look for passback variables on 2checkout's pages.
    If I convert the html file to php, how do I add those variables to the page? I want the client to see this info on the thank you page.

    The variables in question are:

    $order_number
    $card_holder_name
    "To steal ideas from one person is plagiarism; to steal from many is research."

  5. #5
    Join Date
    Jun 2002
    Posts
    146
    PHP Code:
    echo($order_number);
    echo(
    $card_holder_name); 

  6. #6
    Join Date
    Feb 2002
    Location
    NY
    Posts
    169
    Thank you!! that worked
    "To steal ideas from one person is plagiarism; to steal from many is research."

  7. #7
    Join Date
    Jun 2002
    Posts
    146
    You are welcome

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •