> $Msg .= "Test is complete"
> 
> I'm thinking it means concatenate $Msg with "Test is complete" and then
> store the new string into $Msg
> 
> Am I right?

you are correct, same as:
$Msg = $Msg."Test is complete"

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to