Help for this page

Select Code to Download


  1. or download this
    if ($homeurl !~ m[^http://|https://]) {
  2. or download this
    unless ($homeurl =~ m[^http://] or $homeurl =~ m[^https://]) {
        &inerror("Your home url has to start with http:// or https://");
    }
    
  3. or download this
    unless ($homeurl =~ m[^https?://]) {
        &inerror("Your home url has to start with http:// or https://");
    }