How do I continue a string with PHP.
I.E. in ASP you'd do Response.Write "Hello, your name is " & Request.QueryString("name") & ". Thanks for visiting!" How would i do that with an echo in php?
echo "first part " . $aVariable . " second part";