Delete table from MySQL database with HTML form and PHP

Posted by Shek on May 16, 2008 under PHP | Be the First to Comment

Editor’s note: To delete a table from the MySQL database is easy, all you have to do is to run a query to get it done. But in a content management system, you might like to build an user interface for the user to delete a table. Again a HTML form is a good idea for this. Here I have created an example to show how to delete table from MySQL database with HTML form and PHP.
Read more of this article »

Delete records from MySQL database with HTML form and PHP

Posted by Shek on May 15, 2008 under PHP | Read the First Comment

Editor’s note: In some cases such as a company’s login system for example, the login names and passwords are stored in the MySQL database. But if a staff leaves the company and so his account has to be removed from the database. Therefore it is good to design a HTML form for the administrator to remove the record from the database. And here is the example.

Read more of this article »