How To Combine Two Strings Into One
Today's Support Questions Is Regarding Php Programming We Received A Support Question Regarding How You Can Combine Or Put Together Different Strings To Execute As One
How, To, Combine, Two, Strings, Into, One


Fri Feb 05, 2010 7:11 am - How To Combine Two Strings Into One
#3110
How To Combine Two Strings Into One
author: Webune Support
Leave Your Comments
name
comments
Share
Share this post by copy and paste this URL and put it on your forums or use it on your profile like myspace, friendster, Facebook, Twitter or others and add in with your comments.
URL Link: ask
Use this HTML code to embed this topic, just copy the code from the "Embed" box. Once you've copied the code, just paste it into your website or blog to embed it.
Embed: ask
BBCODE is use on forums. You can put this code on all your BBCODE enabled forums like PhpBB, vBulletin® and others. Just Copy and Paste this code on with Posts and Replies on your forums
BBCODE: ask
| More
Sun Apr 11, 2010 4:18 am - Re: How To Combine Two Strings Into One
#3758
phpbcoder
i have a program coding for merging two strings into one
Sun Apr 11, 2010 4:24 am - Re: How To Combine Two Strings Into One
#3760
webune
its very easy to combine to strings into one,

example:

<?php
# declare strings
$foo1 = 'string 1';
$foo2 = ' string 2';

# combine both strings into a new string

$newfoo = $foo1.$foo2;

echo $newfoo;
?>

output:
string 1 string 2