Welcome to my examples page where I show you how to do things that make you want to rip your hair out trying to figuring out.
Yes I know my layout sucks I'm more concerned about quality of content first. Ill work on the layout later for now its just pure information.
 

Examples


C Frame 100% height and width of screen with scrolling content area aka SCFDSP (Static C frame with dynamic Scrolling Porthole) This single HTML/CSS file will give you the ability to have a static header, side menu, footer, with a dynamic area in the centre for content. This is something that I was told could not be done without use of JavaScript. With the help of a lot of research and the mIRC chatroom #CSS I have finally figured it out. For all you interface programmers out there that want a single 100% use of screen space no mater how its resized please view the source and help yourself to the CSS and HTML code

First name validation best practices using regular expressions This is an ongoing project that I need the public to help with. I started to write a validation script for my application and tried to do some research on the internet as to how to validate a first name what I found was ... nothing. Security is my first though when posting a form so i needed to know how to properly validate a first name, and with no degree in names I have no idea what characters some people use in their first name. I know mine could be summed up with simply checking for " /^[a-z]{2,20}$/i " but that doe not work for every name. So I have decided to make an ongoing project to create the standard for the use of all programmers. Click on the link and please contribute if you can.