Demonstrating that the syntax of print is quite flexible : Print : Development PHP Source Code


PHP Source Code » Development » Print »

 

Demonstrating that the syntax of print is quite flexible




<?php
     $string = "will be printed.<br />";
   
     print "This string $string";
     print "This string " . $string;
     print("This string $string");
     print("This string " . $string);
?>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Development
» Print