Use PHP to bulk delete all Prefix_ table _php instances under a database

Source: Internet
Author: User
The following is a script to unify the deletion of a table prefixed with "prefix_":
Copy Code code as follows:

<?php
Set up database connection information. Database server address, database username, data password
mysql_connect (' Database host ', ' Database username ', ' database Password ');
Set the database name of the query
mysql_select_db (' database name ');
$rs =mysql_query (' Show Tables ');
while ($arr =mysql_fetch_array ($RS))
{
Set the database table prefixes to be deleted in bulk, such as: Prefix_
$TF =strpos ($arr [0], ' prefix_ ');
if ($TF ===0) {
$FT =mysql_query ("drop table $arr [0]");
if ($FT) {
echo "$arr [0] Delete success! <br> ";
}
}
}
?>

Create a new PHP file, save as Deletedata.php

For example, you want to delete www.aworldair.com or http://www.pro-reach.com/background data, operation two steps on OK:

1. First upload this saved deletedata.php file to your site root directory;

2. Directly in the Address bar input: www.aworldair.com/deletedata.php or http://www.pro-reach.com/deletedata.php Execute the delete script is OK, the script will display in the browser all the table to delete the success of the information.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.