Re: [PHP] Include and require

2006-08-14 Thread Richard Lynch
On Mon, August 14, 2006 4:20 pm, Dave Goodchild wrote: > Hi all - I have several require_once statements in my web app to load > in > small function libraries. A common one bundles a variety of functions > to > handle date math and map month numbers to month names. I originally > defined > an array

[PHP] Include and require

2006-08-14 Thread Dave Goodchild
Hi all - I have several require_once statements in my web app to load in small function libraries. A common one bundles a variety of functions to handle date math and map month numbers to month names. I originally defined an array in that file plus a bunch of functions but when I loaded the page,

Re: [PHP] include and require

2004-05-27 Thread Michal Migurski
> Can anyone help me with this one: > Is there a difference between "include()" and "require()" ? http://php.net/require http://php.net/include require() and include() are identical in every way except how they handle failure. include() produces a Warning while require()

RE: [PHP] include and require

2004-05-27 Thread Chris W. Parker
Lieve Vissenaeken on Thursday, May 27, 2004 11:05 AM said: > Can anyone help me with this one: > Is there a difference between "include()" and "require()" ? yes i can help you with it. go to www.php.net and search for "include". you will then find the answer you

RE: [PHP] include and require

2004-05-27 Thread php chucker
include() will output warning message and the script continues require() will output error message and will halt the script -Original Message- From: Lieve Vissenaeken [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 2:05 PM To: [EMAIL PROTECTED] Subject: [PHP] include and

[PHP] include and require

2004-05-27 Thread Lieve Vissenaeken
Hi, Can anyone help me with this one: Is there a difference between "include()" and "require()" ? Thanks for helping... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] include() and require() problem

2002-04-19 Thread Rodrigo Peres
List, I'm trying to include some .inc files in my project, but I got errors all time saying that this includes couldn't be found. I'm a newbie, so I can't understand what's happend, since it worked pretty good in my local machine and not in the ISP. I tried to speak to ISP many times but they

RE: [PHP] Include and require

2001-05-03 Thread Philip Olson
for a lengthy post on the subject that clearly explains the differences/similarities/history between require and include, see this post by Zeev : RE: [PHP] Require() vs Include() http://marc.theaimsgroup.com/?l=php-general&m=9741

RE: [PHP] Include and require

2001-05-03 Thread Johnson, Kirk
> According to the docu u should not require() files or > external code in loops > or u must use curly Bracket when used in if conditions. > > But everythink works fine. I require() successfully in for > loops, I can use > it in if..elseif..else constucts without curly brackets. > (only one li

[PHP] Include and require

2001-05-03 Thread Ronald
Hi There, According to the docu u should not require() files or external code in loops or u must use curly Bracket when used in if conditions. But everythink works fine. I require() successfully in for loops, I can use it in if..elseif..else constucts without curly brackets. (only one line of ca