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
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:
> 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
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
4 matches
Mail list logo