Hi there.
You could join the two using a period(.) this will concatenate the two
strings.
$a = 1;
$b = 2;
$together = $a.$b; // $together == '12'
regards
-|Scott
> -Original Message-
> From: Meltem Demirkus [mailto:[EMAIL PROTECTED]]
> Sent: Monday, September 09, 2002 11:39 AM
> To:
$string = $int1 . $int2
Meltem Demirkus wrote:
>Hi,
>
>I want to add one integer to the end of another , which function can I
>use?..
>
>thanks
>
>meltem
>
>
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On September 9, 2002 03:38, Meltem Demirkus wrote:
> Hi,
>
> I want to add one integer to the end of another , which function can I
> use?..
Hi Meltem,
You can use the concatenation operator (.)
Cheers!
--zak
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: ht
I'm not shure what you mean, but is it something like this...
$var1 = $var1 + $var2;
regards
Martin Hjort Eriksen
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
4 matches
Mail list logo