Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSamuel Nhakiwe
112 PointsPHP question please help
select the username and the first and last names and alias them as username, first names and last name;
1 Answer
jamesjones21
9,260 Pointsin php you may have two variables:
$firstName = 'Pete';
$lastName = 'Tong';
then to get the username you simply use concatenation:
$userName = $firstName . ' ' . $lastName;
but if this is php and MYSQL then you can create a concatenation of firstName and lastName an give it an alias of AS UserName:
-- The ' ' is a space
SELECT CONCAT(firstname,' ', lastname) AS UserName FROM TableName;
Hope this helps.