Re: [PHP] function into string

2001-08-07 Thread Renze Munnik
On Tue, Aug 07, 2001 at 02:30:31PM +0200, Veniamin Goldin wrote: > Sorry for the dummies question, but how do I insert into string like: > > echo "balalala" > > how to insert function in the midle like : > echo "balalala [trim(odbc_result($result_id,3))] aasasasas" > > > Thank you. > How

Re: [PHP] function into string

2001-08-07 Thread Tom Carter
Try readin the manual before posting.. all you want is the string concatenation operator . PHP is weakly typed so no direct conversion is needed echo "balalala " . trim(odbc_result($result_id,3)) . " aasasasas" > Sorry for the dummies question, but how do I insert into string like: > > echo "ba