PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
ASP has a "root" link which looks like this: "/directory/filename.asp". In other words, if you begin your paths with "/" (slash) ASP knows to begin from the root of the site. Is there a PHP equivalent of this?
in php putting a "/" will start at the root. "./" and no slash or period at all will start in thecurrect directory. "../" will go backwards one directory. this is the same in normal HTML too.
I hope thats what you meant and I answered currectly.