Help for this page

Select Code to Download


  1. or download this
    RewriteRule ^us/(.*)/(.*)$ /cgi-bin/script.pl?action=Display&state=$1&
    +page=$2 [NC,L,QSA]
    
  2. or download this
    use CGI;
    $query = new CGI;
    $action = $query->param('action');
    $state = $query->param('state');
    $page = $query->param('page');