URL Query String
Alright so I've seen a lot of sites even this site have url's containing something that looks like this
http://google.com/search?=ig=hl blah blah blah
can someone point me in the direction on how to do this properly so I am sending the right data through the query string just something very simple like lets say I wanted to make a page say hello to someone
<form name ="myform" method="post">
<table>
<tr><td>Name:</td><td><input type="text" name="name" /></td></tr>
<tr><td>Age:</td><td><input type="text" name="age" /></td></tr>
<tr><td colspan="2"><input type="submit" name="submit" value="submit" /></td></tr>
</table>
</form><cfif isdefined("form.submit")and form.age neq '' and form.name neq''>
<cfif form.age gt 35>
<cfoutput>#form.name# you are #form.age# years Old!!</cfoutput>
<cfelse>
<cfoutput>#form.name# you are #form.age# years young</cfoutput>
</cfif>
</cfif>
lets say instead of haivng the direct page input this data I want it to go to a differnt page so the query link would look something like this
<a href="http://index.cfm/?greet=old"></a>
Or am I not barking up the right tree?
