Re: [PHP] Parent Limits?

2011-06-21 Thread Daniel Brown
On Tue, Jun 21, 2011 at 00:35, Brian Smither bhsmit...@gmail.com wrote: The following works (three parents): include(../../../includes/ini.inc.php); require_once(../../../includes/ini.inc.php); The following works (four parents): include(../../../../includes/ini.inc.php); The following

[PHP] Parent Limits?

2011-06-20 Thread Brian Smither
The following works (three parents): include(../../../includes/ini.inc.php); require_once(../../../includes/ini.inc.php); The following works (four parents): include(../../../../includes/ini.inc.php); The following does not work (four parents): require_once(../../../../includes/ini.inc.php);

RE: [PHP] Parent Limits?

2011-06-20 Thread admin
-Original Message- From: Brian Smither [mailto:bhsmit...@gmail.com] Sent: Tuesday, June 21, 2011 12:35 AM To: php-general@lists.php.net Subject: [PHP] Parent Limits? The following works (three parents): include(../../../includes/ini.inc.php); require_once(../../../includes/ini.inc.php