Results 1 to 4 of 4

Thread: Click An Item & Have It Transfer Info To A Form
      
   

  1. #1
    Elegant Floral DeeZigns is offline Private First Class
    Join Date
    Jul 2007
    Posts
    7

    Wink Click An Item & Have It Transfer Info To A Form

    Hi :)
    Can anyone tell me how I can create a "Request Estimate" box next to items on my web site that when checked, it will transfer the item's details to pre-fill a Request Estimate form I have programmed?

    I don't want users to have to write down item#'s and then go to the Request Estimate page ... I wan them to be able to click the item and let it copy over the item details for them.

    Thanks,
    Dee :)

  2. #2
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: Click An Item & Have It Transfer Info To A Form

    If you don't have any type of database set up the easiest way I can think of is to add variable to the url of the link to the Request Estimate form

    First you have to make sure your form is published as a .php page

    Then add the item number as a variable. For instance if the url to your form is

    http://yoursite.com/estimate.php

    make the link

    http://yoursite.com/estimate.php?item=320483902

    where "320483902" is the item number.

    And then on your form, set the "value" for the item number field to

    <?=$_GET['item']?>

    And when the form loads it will take whatever the value of "item=" and put it in the field.

    Be aware though, this can decrease security on your site if depending on how you use this.

    I hope that helps

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

  3. #3
    Elegant Floral DeeZigns is offline Private First Class
    Join Date
    Jul 2007
    Posts
    7

    Cool Re: Click An Item & Have It Transfer Info To A Form

    Thanks this is helpful!

    How will it decrease security? What could happen?

  4. #4
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: Click An Item & Have It Transfer Info To A Form

    It would depend on how you use the variables passed in the script.

    You should sanitize any data passed by the url, but if you aren't sanitizing the posted form data either its not really an issue.

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49