For every page, you need to create IU content (e.g. articles.php => Articles, news.php => News) and enter content you want to show. After that open news.php with source code editor and insert [content]News[/content] where you want your "News" content to appear. Do same on each file for every IU content. Also you can have IU content that is shown on more than one page (footer information, sidebar news, ...)
That way, you need to create separate IU content for each .php file. This is useful when you have small mostly static web site and need to update your existing contents from time to time. When you need to add new contents constantly (on a more dynamic web site) you should use our Dynamic pages approach:
Now you have only one .php page which serves all contents. You switch contents by navigating to a page index.php?page=CONTENT where CONTENT is name of your IU content. So then when you want to add new page you just need to create new IU content named after that page, and it will be accessible instantly on index.php?page=CONTENT (where CONTENT is name of your newly created IU content).
And finally, if your web server supports mod_rewrite URL rewriting, you can rewrite all URLs from CONTENT.html to index.php?page=CONTENT - so you can keep your .html links if you want. Various options (of URLs) are possible when using mod_rewrite.
Also, to brand your Instant Update, just go to http://members.cubescripts.com/installation/brand/ and enter your Transaction ID and desired text/link. A generated brand.php file will be served for download. Download it and put it in your comments/ folder to change footer information.
Thanks for your reply. I am not 100% with php , I want to use this software with an existing website which is in html format, could you tell me where the [content]News[/content] would go in a page like below.
<?php<br />define('BASE_PATH','./'); include BASE_PATH . 'manage/functions.php'; ?>
Well it's really up to you how will you organize your web site. You need to decide what is the content you want to be editable, and then move it to the Instant Update content, and then place [content] tags where you want your content to appear. In your case, I would place whole table within IU content, and then place your [content] tags between and HTML tags.
Please note that [content] tags can be placed in page only by using our built in code editor.