[snip] > No they are not. Show some examples. What am I missing here? How is the dot operator not considered concatenation?
$concatenatedString = 'a'.'concatenated'.'string'; [/snip] $ipaddr = "192.34.123.122"; . is not a concatenator, it is part of the string. $myFileName = "barkLikeAdog.txt"; . is not a concatenator, it is part of the string. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php