gotenxds Posted August 27, 2011 Share Posted August 27, 2011 is there a way in php to link from the root dir ? like in html you just use the '/' at the start for the link " <a herf="/link.php" ></a> " but i noticed this does not work when using php like include or require. so is there anywey to tell a link to start from root dir? without using the ../../link.php Link to comment https://forums.phpfreaks.com/topic/245796-linking-from-root-dir/ Share on other sites More sharing options...
gizmola Posted August 27, 2011 Share Posted August 27, 2011 Yes, the file related functions like require and include work with the filesystem path. Try this out: $docroot = realpath($_SERVER['DOCUMENT_ROOT']); echo $docroot; Link to comment https://forums.phpfreaks.com/topic/245796-linking-from-root-dir/#findComment-1262508 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.