Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 04-07-2005, 11:29 AM   #1 (permalink)
Too hot in the hot tub!
 
pixelbend's Avatar
 
[html]using the url to auto fill forms

Hi all,

I was thinking I could do this, but maybe I was wrong. I have a database lookup program that looks up customer names and email addresses. I wanted to format a url from this info to automatically fill in an html form.

I used "http://www.site.com/page.html?name=(name from lookup)&email=(email from lookup)"

I thought that this would fill in the fields for me, but it just brings up the form with all blanks.

Is this possible? What am I doing wrong?
__________________
But I don't want ANY Spam!

Last edited by pixelbend; 04-07-2005 at 11:40 AM.. Reason: misspelling, duh
pixelbend is offline  
Old 04-07-2005, 12:18 PM   #2 (permalink)
Darth Papa
 
ratbastid's Avatar
 
Location: Yonder
What you're describing is very possible, but can't be done with HTML alone. There are lots of ways to do it (Perl CGI, PHP, ASP, JSP, etc, etc) but you need some sort of server-side code to make that happen.
ratbastid is offline  
Old 04-07-2005, 12:25 PM   #3 (permalink)
Too hot in the hot tub!
 
pixelbend's Avatar
 
thanks for the info. I'll just wrap my current html page in a php page so I can grab the variables. thanks for the help!
__________________
But I don't want ANY Spam!
pixelbend is offline  
Old 04-07-2005, 01:49 PM   #4 (permalink)
Upright
 
Location: Detroit, Michigan
You could also get away with using javascript. If you had a static HTML page and no underlying app server.
flick is offline  
Old 04-08-2005, 04:49 AM   #5 (permalink)
Too hot in the hot tub!
 
pixelbend's Avatar
 
What i ended up doing, just in case anyone wants to do this is save the page as a php file, wrap the whole thing in <?PHP ?>, changed all of the quotes to \" and put that in an echo, added variables for each of my form feilds and set them equal to $_GET['whatever the varable name in the url is'] and put the variable names in for the value="variable" in each of the form feilds. Viola.
__________________
But I don't want ANY Spam!
pixelbend is offline  
 

Tags
auto, file, forms, htmlusing, url


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 11:54 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76