lims Posted March 28, 2019 Share Posted March 28, 2019 haw to merger this $clientname = $client['firstname']['lastname']; in $template call = {$clientsdetails.fullname} thanks before 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted March 28, 2019 Share Posted March 28, 2019 I'm assuming that you can't use $clientsdetails, or the class docs and use fullName... ? $clientname = $client['firstname'].' '.$client['lastname']; and for the above code, i'm also assuming that $client contains both firstname and lastname as separate values. 1 Quote Link to comment Share on other sites More sharing options...
lims Posted March 28, 2019 Author Share Posted March 28, 2019 30 minutes ago, brian! said: I'm assuming that you can't use $clientsdetails, or the class docs and use fullName... ? $clientname = $client['firstname'].' '.$client['lastname']; and for the above code, i'm also assuming that $client contains both firstname and lastname as separate values. that right... and work, thanks so much @brian! 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.