Hey all, Just wondering how I would go about having this URL.... www.mydomain.com/cgi-bin/test.cgi?data=test Would be parsed to... www.mydomain.com/cgi-bin/test2.cgi From test2.cgi I would like to be able to read that data = test from test.cgi. <--- Start Test1.cgi ---> Simple HTML page with a form that gets users selected data from radio buttons then when the user hits submit it goes and opens another CGI script (test2.cgi) and parses the data from test.cgi onto test2.cgi <--- End of Test1.cgi ---> <--- Start Test2.cgi ---> Grab submitted data from test1.cgi. $poll = param('data') Would any of these ideas work? <--- End Test2.cgi ---> Is this possible? Kind Regards, Dan ====================================Thread Next