Is there a way I can control a brand name of a product across multiple domains. I am wanting to update the name of products from just one file. I have this product listed on about ~20 different domains. So I need to update the product name from time to time.. Anyone know how I can do this from one file, on another domain or something?
The easiest way would be something like this: <?php $content = file_get_contents("http://yoursite.com/text.txt"); echo $content; ?> PHP: text.txt contains the text you want.
sweet the actual domain from the file get contents should stay hidden correct? I should be able to include links this way as well right?