Aug 19, 2005 #1 kolorasta Technical User Jul 2, 2002 65 AR what's the difference between "include" and "@include
Aug 19, 2005 #2 kenrbnsn Technical User Jun 7, 2002 606 US The "@" symbol surpresses error messages. Ken Upvote 0 Downvote
Aug 22, 2005 #4 Olavxxx Programmer Sep 21, 2004 1,134 NO * If the included file is vital, I prefer using require(). * If the required file is only to be required once, I prefer using require_once() -- require_once() is case insensitive on Windows For more information about them, see: http://www.php.net/requirehttp://www.php.net/require_once Olav Alexander Mjelde http://www.volvo-power.netAdmin & Webmaster Upvote 0 Downvote
* If the included file is vital, I prefer using require(). * If the required file is only to be required once, I prefer using require_once() -- require_once() is case insensitive on Windows For more information about them, see: http://www.php.net/requirehttp://www.php.net/require_once Olav Alexander Mjelde http://www.volvo-power.netAdmin & Webmaster