Click to See Complete Forum and Search --> : Include file without executing it


MasterDucky
January 18th, 2011, 10:17 AM
Is there a way to include a file but not execute its content?

PeejAvery
January 18th, 2011, 03:11 PM
Is there a way to include a file but not execute its content?
No...because that defeats the whole purpose of having an included file.

You should never include code you don't want executed because it gives the interpreter more to handle therefore taking up more resources and time.

MasterDucky
January 19th, 2011, 07:02 AM
Thanks Peej!