I am wondering, What is the proper way for inserting PHP variables into a string? This way:
echo \"Welcome \".$name.\"!\" >
I prefer this all the time and found it much easier.
echo "Welcome {$name}!"