Hi, I have a network of sites that are all on the same shared hosting account, On each site I have a little links section that I want to show the same links and I also want tobe able to update it at the same time. So for example I have Site1.com site2.com site3.com I want a little section on each site to load a php file that will contain the links. I have looked at the include function but couldnt seem to get it to work. The sites are on a shared hosting package, So site one is at public_html/ on the server and the other sites are public_html/site/ etc Thanks
lets say we got a file for your menu which you'll use in all sites i.e: [URL]http://www.yoursite.com/mymenu.php[/URL] Code (markup): then you'll can use the following code to include your menu in any website and you can only edit it once : <?php include("http://www.yoursite.com/mymenu.php"); ?> Code (markup): this is a very basic example, if you need help let me know by PM, Thank you