Quote:
|
Originally Posted by Myke311
I've got a pretty basic form that i need to be able to "submit" by simply loading it in the browser address, not click the submit button. is there a way to do this? Here is the code:
if i load just http://www.mysite.com/dir/submition.cfm?z=1&Myid=1, it doesnt do anything because it doesnt have the userID variable, but im not sure how to include that into the address...
|
Hi there,
I don't know if I understand exactly what you need to do. Why do you need a form to do this? Where is the userID coming from, is it always going to be that value? If so you can just hard code it into the URL:
<a href="/dir/submition.cfm?z=1&Myid=1&userID=27566">
That will only work if submition.cfm has a way to handle userID obviously.
Anyways let me know if you can clarify and I can try to help better.
-Scott-