Page 1 of 1

separate variables

Posted: 2022-12-20 10:44
by pasbonte
Hello stupid question, but how do we separate variables? With my code it appears pasted. Thank you

Code: Select all

'-----> MODIFICATION FICHE DE VOEUX PRINCIPAL: ' . $user_nom . $user_prenom,
			$mail_body,
			"From: [email protected]\r\n" .
			"MIME-Version: 1.0\r\n" .
			"Content-type: text/html; charset=iso-8859-1\r\n"


Re: separate variables

Posted: 2022-12-21 06:51
by pbottcher
Hi,

not sure if I get your question, but assuming that have your $user_nom and $user_prenom squezzed together, you may try

Code: Select all

$user_nom . " " . $user_prenom,
instead.

Otherwise please show what you mean.

Re: separate variables

Posted: 2022-12-21 14:00
by pasbonte
hello
good !
il me manquait juste le point !
merci !