Answers for "php add variable to string"

PHP
8

php concat

$a = "hello";
$b = "world";
$c = $a . " " . $b;

echo $c; // hello world
Posted by: Guest on February-24-2020
1

append variable into string php

echo "'$animal'";
Posted by: Guest on January-27-2021
0

append variable to string php

<?php
  $example = "Example text"
  echo ("Example " . $example ." text")
?>
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language