String operator: Concatenation of $txt1 and $txt2


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 125 Bytes

HITS: 277

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

comments powered by Disqus