use CGI::Fast;
while( $q = new CGI::Fast)
{
print Dumper($q);
}
value of $q is always same. CGI::Fast doesn't read the query string every time i call this file. Can you please tell me how can i force the CGI::Fast to re-read the HTTP_Query_String every time i post a request to this file?