PHP - String concatenation


SUBMITTED BY: KkK1337

DATE: June 27, 2017, 2:25 a.m.

FORMAT: PHP

SIZE: 134 Bytes

HITS: 407

  1. <?php
  2. $string = "PHP is wonderful and great.";
  3. $string = $string . " " . "All the cool kids are doing it.";
  4. echo $string;
  5. ?>

comments powered by Disqus