07.27.2008 Hide and Show a Div Using Javascript

Hide and Show a Div Using Javascript

This tutorial will show you how to create a hidden Div and display it with the click of a link. There are a few reasons you may want to hide a Div in a website design. You may want to create a drop down type menu or a box that will show more information when you click a link. Another reason would be for SEO purposes. In theory hiding information in a Div is not against Google’s rules. As long as the user can still see the content when clicking a button you are not displaying different information to the user than you are to the search engine.

Posted in HTML Tutorials,JavaScriptTutorials,Web Development Tutorials by John Ward
07.16.2008 Creating a Form that will Search a MySQL Database

Creating a Form that will Search a MySQL Database

In this tutorial I will show you how to add a simple search box to query a MySQL database. This tutorial is a continuation of the “How to Access a MySQL Database Using PHP” tutorial.
Since writing that original tutorial I have created a local WAMP test environment. I have created the database “test” with a table “testable”. The table contains the following fields:

Posted in PHP Tutorials by John Ward
07.02.2008 Use JavaScript to Check/UnCheck Checkboxes

Use JavaScript to Check/UnCheck Checkboxes

This tutorial will walk you through creating a basic HTML site with several checkboxes on it. Then it will show you how to use a single click on a button to check all objects and un-check all objects using JavaScript.

Posted in HTML Tutorials,JavaScriptTutorials,Web Development Tutorials by Mike Maguire