Follow Us!

Editing MySQL Data Using PHP

Posted by on Mar 13, 2009 in Database Tutorials, MySQL Tutorials, PHP Tutorials, Web Development Tutorials | 64 comments

We have had a few tutorial that show how to display and add data to a MySQL database. Now I am going to show you how to edit a row in your database. In previous examples we setup a table whcih contains: ID, FName, LName and PHON. We will be retreiving the data, making changes, then updating the row in the database. This tutorial is design for the user to update there own information so we will only be editing row for this user.

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