On Tue, May 23, 2006 6:19 pm, Mindaugas L wrote: > can anybody explain how require works, and what's the difference > between > _once and regular? What's going on when php file is processed? In > manual is > written just, that it's readed once if include_once. What does to mean > "readed"? Thank You require and include both basically work EXACTLY as if you copied/pasted the file into your source code, except that you are "out" of PHP mode in the included file. Adding _once means that PHP will ignore the statement if you have already included or required that file anywhere else in your script previously. -- Like Music? http://l-i-e.com/artists.htm -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php