Posted by red_dragon2983 on 05/18/06 22:01
Try PHP.
,------[ PHP Code Snippet ]
|
| <?PHP include 'file.ext'; ?>
|
`------
where '.ext' can be '.PHP', '.TXT', or '.INC'.
So your page could be something like
,------[ PHP Code Snippet ]
|
| [...]
| <div id="navigation">
| <?PHP include 'file.ext'; ?>
| </div>
| [...]
|
`------
At least it works for me!
//Mark Seymour
[Back to original message]
|