We have multiple Help systems (for different products and versions) that all share the same corporate contact information. To prevent content anomalies in which some versions or products display different information on their respective contact pages, I decided I would try using <?php include() ?> to import a section of code from a folder common to all Help systems (our web server runs PHP):
Code: Select all
<div>...[content]...</div>
<?php include("../../../../../common_content_file.php") ?>
<div>...[content]...</div>
Code: Select all
<div>...[content]...</div>
<p>
</p>
<div>...[content]...</div>
Flare apparently interpreted and replaced the <?php include() ?> line with and empty HTML <p></p> tag.
Two questions:
1. Is this the expected behavior of Flare during the build process?
2. Because snippets are limited in scope to the project in which they reside, is there another way to achieve the effect I seek?
Thanks!