Jump to content

[SOLVED] include files


corillo181

Recommended Posts

does anyone have a better way to include a lot of file in one page?

 

i got a page with a lot of scripts and everything I'm going to use one i have to include it so my page is staring to look like this

 

include_once($_SERVER['HTTP_HOST'].'/function/header.php');

include_once($_SERVER['HTTP_HOST'].'/function/up.php');

include_once($_SERVER['HTTP_HOST'].'/function/ad.php');

include_once($_SERVER['HTTP_HOST'].'/function/seven.php');

 

Link to comment
https://forums.phpfreaks.com/topic/69370-solved-include-files/
Share on other sites

just an idea

include_once($_SERVER['HTTP_HOST'].'/function/common.php');

 

include_once($_SERVER['HTTP_HOST'].'/function/header.php');
include_once($_SERVER['HTTP_HOST'].'/function/up.php');
include_once($_SERVER['HTTP_HOST'].'/function/ad.php');
include_once($_SERVER['HTTP_HOST'].'/function/seven.php');

;D

Link to comment
https://forums.phpfreaks.com/topic/69370-solved-include-files/#findComment-348554
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.