Okay, are you saying that the folder is not in your site, or that it is in a previous directory? If the latter, use:
PHP Code:
include('www.mysite.com/public_html/soccer/header.php')
//or
include('../public_html/soccer/header.php')
If it is not part of your site, you need to make an alias so that APACHE (if that's your server) includes the folder to your website. You decide what the url to that folder is, for example:
Code:
www.mysite.com/alias/
The best/easiest way to create an alias depends on your OS and server.
Bookmarks