> ... I thought that all I would have to do is replace the plus sign (which was the concatenation character in PHP2
withthe || which is the concatenation character in PHP3.
The concatenation operator in PHP3 is "." Try
$a = "Hello";
$b = "World";
$HelloWorld = $a . ", " . $b . "!";
--
Mauricio C. de Oliveira
mailto:carvalho@dt.fee.unicamp.br
http://www.dt.fee.unicamp.br/~carvalho