Follow Us!

Most Recent Articles

JavaScript Progress Bar

Posted by on Aug 12, 2008 in HTML Tutorials, JavaScriptTutorials | 2 comments

This tutorial will walk you through Configuring a javascript based progress bar that can triggered by several things. You could have it triggered by how many results are pulled back from a database, or you could have it triggered by the length of a textbox (passwords), or even trigger it by checkboxes that are checked.

Read More

Hide and Show a Div Using Javascript

Posted by on Jul 27, 2008 in HTML Tutorials, JavaScriptTutorials, Web Development Tutorials | 27 comments

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.

Read More

Creating a Form that will Search a MySQL Database

Posted by on Jul 16, 2008 in PHP Tutorials | 135 comments

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:

Read More

Use JavaScript to Check/UnCheck Checkboxes

Posted by on Jul 2, 2008 in HTML Tutorials, JavaScriptTutorials, Web Development Tutorials | 5 comments

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.

Read More

Receiving Dynamic Textbox Data

Posted by on Jun 30, 2008 in HTML Tutorials, Other Tutorials, PHP Tutorials | 8 comments

In this tutorial we will be working with PHP and MySQL to insert the data that was inserted into the text boxes on the Dynamically Add Textbox to Site tutorial. We will collect the data and insert the values into a database

Read More

Dynamically Add Textbox to Site

Posted by on Jun 23, 2008 in HTML Tutorials, Web Development Tutorials | 156 comments

This tutorial will show you how to program a button that will add textboxes to your site without having to reload the page that you are one. To do this we will be using JavaScript.

Read More

Setting Up a WAMP Server

Posted by on Jun 18, 2008 in Web Development Tutorials | 233 comments

This tutorial will walk you through setting up a WAMP Server using software that can be found on sourceforge for use. First, a little description is an order. A WAMP Server is a Windows Machine that has Apache, MySQL, and PHP on it (WAMP – Windows, Apache, MySQL, PHP) To install these before you would have to get the installs and binaries and configure them yourself and set everything up which can be a tedious task as well as very time consuming.

Read More