使用PHP删除所有数据(删除SQL中的所有数据/值)
P粉803444331
P粉803444331 2023-09-02 13:35:06
[PHP讨论组]
<p>有人可以帮助我吗,我是 PHP 编程新手,我想知道如何制作一个删除按钮,该按钮将删除数据库表中的所有数据/值这是该表 这是我的按钮代码 This is my delete code Wanted to get help from others 这是我的按钮代码</p> <pre class="brush:php;toolbar:false;">&lt;form action=&quot;delete.php&quot; method=&quot;post&quot;&gt; &lt;input type=&quot;submit&quot; name=&quot;delete&quot; class=&quot;btn btn-danger&quot; value=&quot;Clear All Data's&quot; style=&quot;float: right;&quot;&gt; &lt;/form&gt; And this is my delete.php code &lt;?php $server = &quot;localhost&quot;; $username = &quot;root&quot;; $password = &quot;&quot;; $dbname = &quot;qrcodedb&quot;; $conn = new mysqli($server,$username,$password,$dbname); if(isset($_POST['delete'])) { $name = $_POST['delete']; $query = &quot;DELETE FROM table_attendance(NAME,TIMEIN) WHERE name='$name' &quot;; $query_run = mysqli_query($conn, $query); if($query_run) { echo '&lt;script&gt; alert(&quot;Data Deleted&quot;); &lt;/script&gt;'; header(&quot;location:index.php&quot;); } else { echo '&lt;script&gt; alert(&quot;Data Not Deleted&quot;); &lt;/script&gt;'; header(&quot;location:index.php&quot;); } } ?&gt;</pre></p>
P粉803444331
P粉803444331

全部回复(1)
P粉237125700

如果您想从表中删除所有数据,则可以使用截断命令。

TRUNCATE TABLE 命令删除表内的数据,但不会删除表本身。

"TRUNCATE TABLE `table_attendance`"
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号