unidox Posted April 28, 2008 Share Posted April 28, 2008 How do I merge 2 things together. Like: $var1 = "pat"; $var2 = "rick"; I want to combine $var1 and $var2 to make patrick. Link to comment https://forums.phpfreaks.com/topic/103205-merge/ Share on other sites More sharing options...
DarkWater Posted April 28, 2008 Share Posted April 28, 2008 $var3 = $var1 . $var2; Link to comment https://forums.phpfreaks.com/topic/103205-merge/#findComment-528627 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.