René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

String concatenation in PHP

A php page containing this code....
<html><head><title>string concatenation example with PHP</title></head>
<body>

<?php
  $six     = "six ";
  $seven   = "seven ";

  $text    = "one ";
  $text    = $text . "two ";
  $text   .= "three ";
  $text   .= "four " . "five " . $six . $seven;

  print "text: " . $text;

?>

  <p><a href='http://www.adp-gmbh.ch/php/string_concat.html'>Go here</a>

</body><html>
... can be found here.