Re: [PHP] can .inc run php script?

2001-01-29 Thread Shawn Blaylock
You have to set up the webserver to accept .inc files as php scripts. The example you gave isn't actually running the function it's just defining it. If you include the .inc file in a .php file, it'll run whatever's in it as if it were part of the php file. If you directly call the .inc file

RE: [PHP] can .inc run php script?

2001-01-29 Thread Brian V Bonini
Well if your using .inc then your probably including this into a php file via include "config.inc"; in which case it will become part of a php file so yes it will be parsed. If your trying to run it as a standalone then that will depend on your web server config and which files you've told it to

Re: [PHP] can .inc run php script?

2001-01-29 Thread John LYC
THANKS EVERYONE!!!... John LYC wrote: hi all, can .inc file run scripts... example... //config.inc function watever() { //do something $var = something; return $var; } thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

RE: [PHP] can .inc run php script?

2001-01-29 Thread Maxim Maletsky
Yup, you can even run .maxim or .john if you add them into apache's httpd.conf, or without adding anything you can just include() any possible kind of file into .php file and it will be processed just as a .php file. Cheers, Maxim Maletsky -Original Message- From: John LYC