Functions Php




    function tagWrap( $tag, $txt, $func="" ) {
      if ( function_exists( $func ) )
        $txt = $func( $txt );
      return "<$tag>$txt\n";
    }
    
    function subscript( $txt ) {
      return "$txt";
    }
    
    print tagWrap('b', 'bold');
    
    print tagWrap('i', 'i', "subscript");
   
?>