R
E
S
O
U
R
C
E
S
       Home      Products & Services      Contact Us      Links


WebHatchers will design & develop your site for you.
_______________________

Website Menu Heaven: menus, buttons, etc.
_______________________

Send us your questions.
_______________________

site search by freefind
_______________________

HOME
SEO, Google, Privacy
   and Anonymity
Browser Insanity
JavaScript
Popups and Tooltips
Free Website Search
HTML Form Creator
Animation
Buttons and Menus
Counters
Captchas
Image Uploading
CSS and HTML
PHP
AJAX
XPATH
Website Poll
IM and Texting
Databases—MySQL
   or Not MySQL
Personal Status Boards
Content Management
   Systems
Article Content
   Management Systems
Website Directory
   CMS Systems
Photo Gallery CMS
Forum CMS
Blog CMS
Customer Records
   Management CMS
Address Book CMS
Private Messaging CMS
Chat Room CMS
JavaScript Charts
   and Graphs




Free Personal Status Boards (PSB™)

Free Standard Free PSB

Free PSB Pro Version

Free Social PSB

Free Social PSB Plus (with Email)

Free Business PSB

Free Business PSB Plus (with Email)

PSB demo

Social PSB demo

Business PSB demo

So what's all this PSB stuff about?

Chart comparing business status boards

PSB hosting diagram

PSB Licence Agreement



Copyright © 2002 -
MCS Investments, Inc. sitemap

PSBs, social networking, social evolution, microcommunities, personal status boards
PSBs, social networking, business personal status boards
website design, ecommerce solutions
website menus, buttons, image rotators
Ez-Architect, home design software
the magic carpet and the cement wall, children's adventure book
the squirrel valley railroad, model railroad videos, model train dvds
the deep rock railroad, model railroad videos, model train dvds

Content Management System Navigation

Content Management Systems make it easier to manage content if there are a lot of pages on a website. They often rely on MySQL tables to store their data. Then when pages are needed for displaying in a browser, Content Management Systems (CMS) can simply read the MySQL table where the data is stored and generate web page content on the fly. Our favorite language for Content Management Systems development is PHP, even though ASP and other server side languages can do the job too.

The following pages will explain in detail how to handle the coding of an Article Content Management System, including article indexes, editing articles, searching articles—both exact phrases and a series of words, deleting articles, writing articles, and reading articles.

Unlike most such systems, our Article Content Management System allows you to enter text, add italics or bold or underline, add links, add email links, add sounds, add videos, and add pictures. Our code has been tested—it works fine. We've added security functions, but these are limited to the obvious and a good hacker could get around them. It's good code, but it's not Joomla.

Feel free to use our Article Content Management System as long as you follow these terms: (1) NEVER sell it, including in part or as a whole. (2) NEVER represent it as your CMS system—WE own it and it is copyrighted by MCS Investments, Inc., © 2010. (3) NEVER promise anyone its security is 100% foolproof (nothing is—period). (4) Always give us at least one permanent do-follow link from the site where you use this CMS system.

Article Content Management System

All we did for navigation is add a PHP include (to all Article Content Management System application files) that loaded an HTML file with the needed navigational links:

<?php include("navigation.html"); ?>

Here is the total content of the navigation.html file (note the intentional absence of <HTML> tags such as HTML, HEAD, or BODY tags):

<div style='position:absolute;top:90px;left:2px;width:160px;background-color:#bbb;border:1px solid blue;padding:5px'>
<a HREF="cms-index-articles.php">Index</a><br>
<a HREF="cms-edit-articles.php">Edit</a><br>
<a HREF="cms-search-articles.php">Search</a><br>
<a HREF="cms-delete-articles.php">Delete</a><br>
<a HREF="cms-write-articles.php">Write</a><br>
<a HREF="cms-read-articles.php">Read</a><br>
<a HREF="http://css-resources.com">CSS-Resources</a>
</div>

So each page of the app gets this:

Index
Edit
Search
Delete
Write
Read
CSS-Resources