Hi,
 
It seems that cgi.query_string only returns the first url variable name and value from a url regardless of how many other variables exist in the url.
 
eg. cgi.query_string returns only "studcode=123456" from the following url:
 
http://www.myurl.com/somepage.cfm?studcode=123456&area=23&allowance=69
 
is there another cgi var i am missing that will return "studcode=123456&area=23&allowance=69"? or do i need to check for a len(cgi.query_string) and return everything after the question mark?
 
thanks.... steve c

Reply via email to