Jump to content

is this a bad idea?


acidglitter

Recommended Posts

it depends on what is actually in the include file - some things you shoudl use require_once or include_once (like the html for the head section of a page) others you could include as many as you like if they perform a repetitive function.

Link to comment
https://forums.phpfreaks.com/topic/67795-is-this-a-bad-idea/#findComment-341187
Share on other sites

  Quote

but will it take longer to load compared to a page that just has all of the content on one page without the includes()?

Yes, there is much more overhead in opening up a file, reading it's contents, re-initializing the interpreter, interpreting the new file, and running it's code.

 

There's just no comparison. Having your code in 1 file will be faster by leaps and bounds.

Link to comment
https://forums.phpfreaks.com/topic/67795-is-this-a-bad-idea/#findComment-341204
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.