Copy the Code code as follows:
@mysql_connect ("localhost", "root", "1981427")//Select the database before you need to connect to the database server
Or Die ("Database server Connection Failed");
@mysql_select_db ("test")//Select Database MyDB
Or Die ("database does not exist or is not available");
$query = @mysql_query ("SELECT * from TableName1")//Execute SQL statement
Or Die ("SQL statement execution failed");
echo "";
?>
Copy the Code code as follows:
@mysql_connect ("localhost", "root", "1981427")//Select the database before you need to connect to the database server
Or Die ("Database server Connection Failed");
@mysql_select_db ("test")//Select Database MyDB
Or Die ("database does not exist or is not available");
foreach ($_post[' chk '] as $check)
{
$query = mysql_query ("Delete from tablename1 where id = $check");
if ($query)
echo "Delete succeeded";
Else
echo "Delete Failed";
}
Mysql_close ();
?>
The above describes the PHP delete record implementation code, including the aspects of the content, I hope the PHP tutorial interested in a friend helpful.