Help for this page

Select Code to Download


  1. or download this
    $cgi->a; # returns <a />
    
  2. or download this
    $cgi->a('some text'); # returns <a>some text</a>
    
  3. or download this
    $cgi->a({href=>'http://somewhere/'}, 'some text');
    # returns <a href="http://somewhere/">some text</a>