Re: [PHP-DB] Include File Syntax

2001-04-27 Thread Vlad
Hi Format of included files is the same as original .php file.:) When you include .php file it is the same as you copy that file in your main .php file in that place. This is my first time programming with PHP. I have seen include files in the beginning of a php block and wonder is there a

RE: [PHP-DB] Include File Syntax

2001-04-26 Thread Steve Brett
hi kat, the include files are simply a way for repetitive code (like a connection to a db) to be inserted into your pages. the syntax for the files is the same as any php script and it is added to the page at the point that you include it. the format is include (page_name.php); the pages