Help for this page

Select Code to Download


  1. or download this
    if (condition) {
       print redirect(-uri=>'http://www.mysite.com/xyz.html');
    } else {
       print redirect(-uri=>'http://www.mysite.com/abc.html');
    }
    
  2. or download this
    if (condition) {
       print $q->redirect(-uri=>'http://www.mysite.com/xyz.html');
    } else {
       print $q->redirect(-uri=>'http://www.mysite.com/abc.html');
    }