View Single Post
  #13 (permalink)  
Old 05-14-2008, 11:01 AM
v0id's Avatar   
v0id v0id is offline
Super Moderator
 
Join Date: Apr 2007
Location: Denmark
Posts: 2,578
Last Blog:
CherryPy(thon)
Credits: 55
Rep Power: 28
v0id is a glorious beacon of lightv0id is a glorious beacon of lightv0id is a glorious beacon of lightv0id is a glorious beacon of lightv0id is a glorious beacon of lightv0id is a glorious beacon of light
Send a message via MSN to v0id
Default Re: Mailing Question

You can concatenate strings using the .-operator.
Code:
$str = "some string";
$str .= " and some more string";

// $str: some string and some more string
Reply With Quote