Help for this page

Select Code to Download


  1. or download this
    $string .= "someoutput";
    $string .= "someotheroutput";
    # logic here
    $string .= "moreoutput";
    print $string;
    
  2. or download this
    print "someoutput",
          "someotheroutput";
    # loging here
    print "moreoutput";