Help for this page

Select Code to Download


  1. or download this
    $thebase .= 
        (substr($thebase, -1) eq '/') ? 
        'default' : 
        '/default';
    
  2. or download this
    if(substr($thebase, -1) eq '/') { 
        $thebase = $thebase . 'default';
    ...
    else {
        $thebase = $thebase . '/default';
    }