"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";

  -- Rob

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

Reply via email to