I name an “include” for my PHP page and the location needs to include a variable such as:
include (’/home/httpd/www_mysite_com/htdocs/www.$sld.$tld/.styles.xml’);
When I don’t use the variables in the include like this it works:
include (’/home/httpd/www_mysite_com/htdocs/www.myhomesite.com/.styles.xml’);
However, I’m using this page to feed multiple other pages and I’d really like to include a variable in the specified location for the include. Can this be done? How?