in reply to Appending characters to an existing string
In addition to the suggestions above, you can use .= as a little bit of a shortcut. This will append the given value to the end of the given variable. Example:
$var = 'wolf'; $var .= '.pl'; [download]