separate variables

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
pasbonte
Veteran Member
Posts: 162
Joined: 2013-02-06 09:49

separate variables

Post by pasbonte » 2022-12-20 10:44

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"


pbottcher
AppGini Super Hero
AppGini Super Hero
Posts: 1635
Joined: 2018-04-01 10:12

Re: separate variables

Post by pbottcher » 2022-12-21 06:51

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.
Any help offered comes with the best of intentions. Use it at your own risk. In any case, please make a backup of your existing environment before applying any changes.

pasbonte
Veteran Member
Posts: 162
Joined: 2013-02-06 09:49

Re: separate variables

Post by pasbonte » 2022-12-21 14:00

hello
good !
il me manquait juste le point !
merci !

Post Reply