![]() |
|
| |||||||
| Notices |
| BlueVoda - General Issues All BlueVoda support issues that are not covered in the below forums. |
![]() |
| | LinkBack | Thread Tools |
|
#1
| |||
| |||
|
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
| ||||
| ||||
|
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 |
|
#4
| ||||
| ||||
|
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 |