ow do i add an varible to this
echo 'Hello!';
so it can display Hello!, NAMEHERE
echo 'Hello, '.$name.'!'; // or echo "Hello, $name!"; // will not work with single quotes // or printf("Hello, %s!", $name);
And probably a dozen or so variations and alternatives. 🙂
NogDog wrote:And probably a dozen or so variations and alternatives.
And probably a dozen or so variations and alternatives.
Some of which are given in the manual - well worth checking out for information like this.