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

Photo Gallery Navigation

Content Management Systems (this link gives general CMS info but also specific info on Article CMS which you may ignore) make it easier to manage content if there are a lot of pages on a website or app. 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 code will need to be saved as navi.html to support navigation in our Photo Gallery CMS system.

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

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

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

<div style='position:absolute;top:390px;left:2px;width:120px;background-color:#bbb;border:1px solid blue;padding:5px'>
<a HREF="cms-view-photo-gallery.php">View Gallery</a><br>
<a HREF="cms-edit-photo-gallery-add-photo.php">Add Photo</a><br>
<a HREF="cms-edit-photo-gallery-add-category.php">Add Category</a><br>
<a HREF="cms-edit-photo-gallery-delete-photo.php">Delete Photo</a><br>
<a HREF="cms-edit-photo-gallery-delete-category.php">Delete Category</a><br>
<a HREF="cms-write-photo-gallery.php">Create Gallery</a><br>
<a HREF="http://css-resources.com">CSS-Resources</a>
</div>

So each page of the app gets this:

View Gallery
Add Photo
Add Category
Delete Photo
Delete Category
Create Gallery
CSS-Resources