Hello Jackson,

Thursday, March 31, 2005, 3:20:11 PM, you wrote:

JL> What am I doing wrong when I try to make this:
JL> <?php include_once INCLUDES."include.php"; ?>

Be sure you don't define a reserved word, but to get the above working
do:

include_once(INCLUDES . 'include.php');

Best regards,

Richard Davey
-- 
 http://www.launchcode.co.uk - PHP Development Services
 "I do not fear computers. I fear the lack of them." - Isaac Asimov

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

Reply via email to