Help for this page

Select Code to Download


  1. or download this
    $mode = "default";
    if($cur->param("mode")) {
        $mode = $cur->param("mode");
    }
    
  2. or download this
    while (<TEMPLATE>){
        $page .= $_;
    }
    
  3. or download this
    {
        local $/;
        $page .= <TEMPLATE>;
    }