A simple Content Management System 
based on CKeditor

Online Demo

Note: In Demo mode you cannot change contents.

The following box was made editable with DynPage. Click here to see the editor in action.

You can also edit the news box with DynPage. Click here.

How the content is included?

DynPage stores the contents in files which have to be included into your page.
There are two ways to include it: Ajax/Javascript and PHP.

The examples above use Ajax/Javascript to load <div> tags dynamically.

<head> section of this page:

<script type="text/javascript" src="dynpage/js/jquery.min.js"></script>
<script type="text/javascript" src="dynpage/js/dynpage_load.js"></script>

You should only include jQuery if it's not yet included!

<body> section of this page:

<div id="dynpage_news"></div>
<
script type="text/javascript">
dynpageLoad ('dynpage_news', 'dynpage/content/dynpage_news.htm');
</script>
...
<div id="demo_1"></div>
<
script type="text/javascript">
dynpageLoad ('demo_1', 'dynpage/content/demo_1.htm');
</script>

For more information please read FAQ.

Back to home ...