Help for this page

Select Code to Download


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