Answers for "concat with php"

PHP
0

String Concatenation in PHP

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

Browse Popular Code Answers by Language