Re: [PHP] fullname

2002-07-30 Thread CC Zona
In article <001301c23799$2deb3b30$100a0a0a@skink>, [EMAIL PROTECTED] (David Freeman) wrote: > > is there some other easyer way to do in one line than this?: > > > > $fullname = $session["f_name"]; > > $fullname .= " "; > > $fullname .= $session["l_name"]; > > $fullname = $session["f_n

Re: [PHP] fullname

2002-07-30 Thread Justin French
on 30/07/02 5:12 PM, Wee Keat ([EMAIL PROTECTED]) wrote: > Is this easier for you? > > $fullname = $session["f_name"]." ".$session["l_name"]; or $fullname = "{$session['f_name']} {$session['l_name']}"; Justin French -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] fullname

2002-07-29 Thread David Freeman
> is there some other easyer way to do in one line than this?: > > $fullname = $session["f_name"]; > $fullname .= " "; > $fullname .= $session["l_name"]; $fullname = $session["f_name"] . " " . $session["l_name"]; CYA, Dave -- PHP General Mailing List (http://www.php.net/) To unsub

Re: [PHP] fullname

2002-07-29 Thread Wee Keat
Is this easier for you? $fullname = $session["f_name"]." ".$session["l_name"]; - Original Message - From: "Mantas Kriauciunas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: 30 July, 2002 7:11 PM Subject: [PHP] fullname > Hey php-general, > > is there some other easyer way t