Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
I'm not sure this belongs in this forum, but it sounds like what you're talking about is a GET query, which is a common way of posting information from a form. You have seen GET query's many times in the address bar of your web-browser, and they look something like this: (website goes here)/form.php?q=whatever&w=whatelse
Now, to send this information to a page, you can either link to it such as this: <a href="form.php?q=whatever&w=whatelse">Go to page!</a> Or you can use the GET method via a form, and make the name values of the correct fields 'q' and 'w' or whatever you need for corresponding fields for them to process correctly. For all intensive purposes, 'q' and 'w' are variables that can hold information.
Hope that helps.
__________________
I build web things. I work for the startup Please login or register to view this content. Registration is FREE
.
Last edited by wayfarer07; 03-31-2008 at 02:10 PM..
|