* Thus wrote Rob Adams ([EMAIL PROTECTED]): > > "Php Email List" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > $smiley = ":)"; > > include_once(evil_laugh.php); > > echo $laugh $smiley; > > //Echo'd: Muuuhahahahahah :) > > You're syntax is a little off here. You need to use: > > echo $laugh . $smiley; > or > echo "$laugh $smiley";
or echo $laugh, $smiley; Curt -- "I used to think I was indecisive, but now I'm not so sure." -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php