I would like to string together database values into a string. Something like $a "text" $b. And then use the entire string as a variable, let's say $c.
Is it better to do this at the database level? Will php use lots of resources to do this?
I would like to string together database values into a string. Something like $a "text" $b. And then use the entire string as a variable, let's say $c.
Is it better to do this at the database level? Will php use lots of resources to do this?
No, either database or php won't notice this operation.
Better to do in php as it would be a lot readable.
perfectly acceptable - calculated or derived field in mysql for example
select
c.firstname,
c.lastname,
concat(c.firstname, ' ', c.lastname) as fullname
from
customer c
where
c.cust_id = 1;
Are you wanting to save this longer string in the DB, or use it once removed (and show it as HTML or something?)
(can't comment, not enough rep!)