Page 1 of 1

putting 2 strings into one

Posted: Fri Feb 20, 2004 9:45 pm
by josh
how can i put several strings into one? adding them with a + gives parse error and so does this

$message= "reffer = " $reffer " user = " $user " problem = " $problem;

Posted: Fri Feb 20, 2004 10:05 pm
by Illusionist
use a .

$message = "reffer = " . $reffer . " user = " etc....

Posted: Fri Feb 20, 2004 10:09 pm
by josh
thanks