Answers for "concatinate in php"

PHP
0

php string concat

$name [] = ['abhi']
Posted by: Guest on May-11-2021
-1

String Concatenation in PHP

phpCopy<?php
$mystring1 = "This is the first string. ";
$mystring2 = "This is the second string.";
$mystring1 .= $mystring2;
echo($mystring1);
?>
Posted by: Guest on April-23-2021

Browse Popular Code Answers by Language