Jump to content

.inc.php?


immanuelx2

Recommended Posts

Yeah, from what I got from the other post it is just an easy way to differentiate between file types and what they are used for. So it isn't something thats required, but I guess it would be appropriate if you had a large application that had a lot of side files that you had to include.

Link to comment
https://forums.phpfreaks.com/topic/55972-incphp/#findComment-276464
Share on other sites

Yeah, it is just a way to show that the file gets included.

 

Although you could just name it file.inc, unless your server is set up so that php will parse files with extensions of .inc(and even then you get portability issues), then it tends to be a security issue. Often includes may contain sensitive data (database connection info etc) and just giving the file the extension .inc could allow someone to view the file in plain text. So, people name it file.inc.php, so it is still always parsed by php, but also shows that its an included file.

Link to comment
https://forums.phpfreaks.com/topic/55972-incphp/#findComment-276467
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.