String Concatenation Operators : String Operators : String PHP Source Code


PHP Source Code » String » String Operators »

 

String Concatenation Operators



<?php
     $header = "<html>n"
             "<head>n"
             "<title>String Operators</title>n"
             "</head>n"
             "<body>n";
     $body_content = "body<br />n";
     $footer = "</body>n"
             "</html>n";
     $page_content .= $header . $body_content . $footer;
     print($page_content);
?>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo String
» String Operators