This topic is locked

Can't concat in event

6/16/2009 12:26:57 PM
PHPRunner General questions
lewisgr author

I'm writing a event code where I want to concat the firstname and last name but when I run it in the brower to test it, it gives me this error:
Fatal error: Call to undefined function concat() in ...
Is there something else I should be using in the events section instead of concat?
Thank you

lewisgr author 6/17/2009

I found it:
$CustFirst = ($oldvalues["FirstName"]);

$CustLast = ($oldvalues["LastName"]);
$CustName = ($CustFirst . ' ' . $CustLast);