Answers for "concat php variable"

PHP
0

php string concat

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

php concatenate and add

this is inside for or foreach loop

# For concatenate use           .=
 $var .= 'string';

 # For adding the VALUES use    +=
 $var += 1;
Posted by: Guest on March-23-2021

Browse Popular Code Answers by Language