Hi all, Not sure if I should have put this in the Javascript section, as I'm not sure if the solution to my problem requires it, but I thought I'd try hear first. Basically, I want to make a simple form that has 2 fields: first name & last name (I can do this part, lol). The hard part: when the user (for example James Smith) submits the form, I want them re-directed to the following page: http://example.net/?gasearching=1&recordtype=3&firstName=[B]James[/B]&lastName=[B]Smith[/B]&location=US Code (markup): ...where the visitor's first and last name get entered the proper fields depending on what information they entered into the form. Any help would be appreciated.
No geo-targeting required. The only variables are the one the user enters into the form (first name & last name)
Well if the information is entered into a DB you could use PHP to call the first and last name variables and insert that into the URL, sounds like you may be looking for more then that though
Well that's what I'd like to do...but without the database. Looking into it, it looks like the PHP $_GET Function might be of use, but I don't have enough experience with PHP to get this working.
im the same way, i have a good general PHP base but i work with a PHP programmer, ill shoot him this link see if he can be of some help to you
change the "method" property of the form from post to get this will cause the form data to be added to the url in the normal ?name=value&next=more style of a GET request.