程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP 清空 MySql 指定數據表中的所有數據

PHP 清空 MySql 指定數據表中的所有數據

編輯:關於PHP編程

PHP 清空 MySql 指定數據表中的所有數據,在烈火小編在網上閒逛時,這是某技術博客的一篇文章,說是文章,並沒有文字,只有代碼,經過測試可以使用,現在分享給大家。

共有三個文件,其實也可以合並寫成一個。

1.conn.php:

Copy to ClipboardLiehuo.Net Codes引用的內容:[www.bkjia.com] <?php
$id=mysql_connect("localhost","root","mysql") or die('連接失敗:' . mysql_error());
if(mysql_select_db("phpjcdb",$id)) //說明:phpjcdb 是數據庫名稱
echo "";
else
echo ('數據庫選擇失敗:' . mysql_error());
mysql_query("set names gb2312"); //設置為簡體中文
?>

2.index.php: 

Copy to ClipboardLiehuo.Net Codes引用的內容:[www.bkjia.com] <?php
include("conn.php");
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>清空指定數據表中的所有數據</title>
<style type="text/css">
<!--
.STYLE2 {font-size: 13px}
.STYLE3 {font-size: 12px}
-->
</style>
</head>
<script language="javascript" type="text/javascript">
function deletes(){
if (window.confirm('確定要刪除該記錄??')==true){
return true;
}else{ return false;}
}
</script>
<body>
<form action="index.php" method="post" name="form1" id="form1">
<table width="614" height="90" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="20" height="53"> </td>
<td width="219"> </td>
<td width="355"> </td>
<td> </td>
</tr>
<tr>
<td height="26"> </td>
<td align="right"><select name="select">
<?php
$result = mysql_list_tables ("db_database06");
$i = 0;
while ($i < mysql_num_rows ($result)) {
$tb_names = mysql_tablename ($result, $i);
?>
<option value="<?php echo $tb_names;?>"><?php echo $tb_names;?></option>
<?php $i++; }?>
</select> </td>
<td><input type="submit" name="Submit2" value="提交" /></td>
<td width="20"> </td>
</tr>
<tr>
<td height="5"> </td>
<td align="right"> </td>
<td> </td>
<td> </td>
</tr>
</table>
<table width="614" height="25" border="0" cellpadding="0" cellspacing="0" background="images/bg03.jpg">
<tr>
<td width="20"> </td>
<td width="569">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<?php
if($_POST['Submit2']=="提交"){
$select = $_POST['select'];
$query1=mysql_query("select * from $select");
$query2=mysql_query("select * from $select");
$myrow=mysql_fetch_row($query2);?>
<tr>
<?php for($i=0;$i<count($myrow);$i++){?>
<td align="center">
<span class="STYLE2"> <?php echo mysql_field_name($query2,$i);?></span></td>
<?php } ?>
</tr>
<?php while($myrow=mysql_fetch_row($query1)){ ?>
<tr>
<?php for($i=0;$i<count($myrow);$i++){?>
<td align="center"><span class="STYLE3"> <?php echo $myrow[$i];?></span></td>
<?php } ?>
</tr>
<?php } } ?>
</table></td>
<td width="20"> </td>
</tr>
</table>
</form>
<form action="index_ok.php?lmbs=<?php echo $select;?>"
method="post" name="form2" id="form2" onSubmit="return deletes();">
<table width="614" height="28" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><input type="submit" name="Submit" value="刪除數據"></td>
</tr>
</table>
</form>
</body>
</html>

3.index_ok.php:

Copy to ClipboardLiehuo.Net Codes引用的內容:[www.bkjia.com] <?php
session_start();
include("conn.php");
if($_POST['Submit']==true){
$lmbs = $_GET['lmbs'];
$result=mysql_query("delete from $lmbs");
if($result==true){echo "刪除成功!";}else{echo "刪除失敗!!";}
}
?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved