Help for this page

Select Code to Download


  1. or download this
    if ($something) {
        print $big_long_something_response;
    ...
    else {
        print $other_big_long_string
    }
    
  2. or download this
    if ($something) {
      print "Something happened";
    ...
    .
    .
    }