henk
Posts: 2
|
| Posted: 01/01/2010, 6:27 PM |
|
Problem....
I have a PHP file called sidebar.php it is my menu which I call from all my php pages. This however does not work with the codecharge generated pages.
Where would I put the following.
<?php
include ("Templates/sidebar.php");
?>
My guess was to use the HTML file, but that does not work.
Anyone able to help this rookie.
Thanks
H.
|
 |
 |
damian
Posts: 838
|
| Posted: 01/01/2010, 6:45 PM |
|
try this:
add a label on the page where you want your menu to display, add custom code in before show event:
$output = implode("", file("http://fqdn/filename));
$Component->SetValue($output);
set content to html
_________________
if you found this post useful take the time to help someone else.... :)
|
 |
 |
|