Jason Fb wrote:

<?php
// Note that !== did not exist until 4.0.0-RC2

$root_dir = "/Users/jason/Sites/";

$folder_on_server "test";

This should be:

$folder_on_server = "test";

T_CONSTANT_ENCAPSED_STRING is a long way of saying a string that doesn't have any fanciness in it like "test" or 'hello', but not "this $way" because $way is a variable that will be interpreted.

Greg

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



Reply via email to