String operator: Appends $txt2 to $txt1


SUBMITTED BY: henry1874w

DATE: June 12, 2017, 4:01 p.m.

FORMAT: Text only

SIZE: 134 Bytes

HITS: 222

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $txt1 = "Hello";
  6. $txt2 = " world!";
  7. $txt1 .= $txt2;
  8. echo $txt1;
  9. ?>
  10. </body>
  11. </html>

comments powered by Disqus