kade119 Posted April 7, 2010 Share Posted April 7, 2010 What is the best way to link to my js, css, php include files? I found someone structure their site like this .. any advice? <?php $_PATHS["base"] = dirname(dirname(__FILE__)) . "/"; $_PATHS["includes"] = $_PATHS["base"] . "includes/"; $_PATHS["templates"] = $_PATHS["base"] . "templates/"; $_PATHS["logs"] = $_PATHS["base"] . "logs/"; /** * Set include path */ ini_set("include_path", "$_PATHS[includes]:$_PATHS[pear]:$_PATHS[templates]"); ?> Quote Link to comment https://forums.phpfreaks.com/topic/197926-setting-up-php-paths-to-filesdirectories/ Share on other sites More sharing options...
kade119 Posted April 7, 2010 Author Share Posted April 7, 2010 or could someone show me how they setup their header include when building a site? Quote Link to comment https://forums.phpfreaks.com/topic/197926-setting-up-php-paths-to-filesdirectories/#findComment-1038612 Share on other sites More sharing options...
br0ken Posted April 7, 2010 Share Posted April 7, 2010 There are various different methods to creating your 'environment' (for the lack of a better word). The method you have described will work fine, however you will need to watch out for naming collisions. By asking whether your method is good practise, as opposed to just coding and hoping shows that you are on the right track. Keep asking questions and you'll be fine! Quote Link to comment https://forums.phpfreaks.com/topic/197926-setting-up-php-paths-to-filesdirectories/#findComment-1038634 Share on other sites More sharing options...
ignace Posted April 8, 2010 Share Posted April 8, 2010 Zend uses: define('APPLICATION_PATH', dirname(__FILE__)); $app = new Zend_Application(APPLICATION_ENV, 'path/to/config.ini'); $app->bootstrap('FrontController')->run(); The constant APPLICATION_PATH is used/resolved within the config.ini like so: resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers" Quote Link to comment https://forums.phpfreaks.com/topic/197926-setting-up-php-paths-to-filesdirectories/#findComment-1038846 Share on other sites More sharing options...
br0ken Posted April 8, 2010 Share Posted April 8, 2010 Based on the question, I imagine Zend is too complex for what this user requires. Also, with no knowledge of Zend I imagine the code sample you posted makes no sense what so ever. Quote Link to comment https://forums.phpfreaks.com/topic/197926-setting-up-php-paths-to-filesdirectories/#findComment-1039094 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.