Hello all :),
As some of you most likely know I am a complete begginer to PHP.
I need some help understanding how operators and the dots for the echo works.
Here is an example of how I have read of doing it -
<?php
$txt1 = "Hello";
$txt2 = "Fool";
echo $txt1." ".$txt2;
?>
But I read about operators in JavaScript and completely understand it, can you replace the dots above with + like this -
<?php
$txt1 = "Hello";
$txt2 = "Fool";
echo $txt1 + " " + $txt2;
?>
Thanks !:)
