Answers for "concat html to variable php"

PHP
0

php concat variable and string

<?php
  $name = "Paul";	
  $age = 26;

  echo "My name is {$name}, I'm {$age} years old ";
Posted by: Guest on March-24-2021

Browse Popular Code Answers by Language