这篇文章主要讲解了“基于PHP怎么实现原生增删改查”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“基于php怎么实现原生增删改查”吧!一、代码1、sql-- phpMyAdmin&n
这篇文章主要讲解了“基于PHP怎么实现原生增删改查”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“基于php怎么实现原生增删改查”吧!
-- phpMyAdmin SQL Dump-- version 4.5.1-- Http://www.phpmyadmin.net---- Host: 127.0.0.1-- Generation Time: 2022-03-19 19:16:40-- 服务器版本:10.1.13-MariaDB-- PHP Version: 5.6.21SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";SET time_zone = "+00:00";;;;;---- Database: `a`---- ------------------------------------------------------------ 表的结构 `search`--CREATE TABLE `search` ( `id` int(20) NOT NULL, `content` text COLLATE utf8_vietnamese_ci NOT NULL, `type` varchar(100) COLLATE utf8_vietnamese_ci NOT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_vietnamese_ci;---- 转存表中的数据 `search`--INSERT INTO `search` (`id`, `content`, `type`) VALUES(32, 'aaa', '特步'),(33, '陈业贵喜欢安踏', '安踏');-- ------------------------------------------------------------ 表的结构 `type`--CREATE TABLE `type` ( `id` int(11) NOT NULL, `type` varchar(12) COLLATE utf8_vietnamese_ci NOT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_vietnamese_ci;---- 转存表中的数据 `type`--INSERT INTO `type` (`id`, `type`) VALUES(1, '安踏'),(2, '特步');---- Indexes for dumped tables------ Indexes for table `search`--ALTER TABLE `search` ADD PRIMARY KEY (`id`);---- Indexes for table `type`--ALTER TABLE `type` ADD PRIMARY KEY (`id`);---- 在导出的表使用AUTO_INCREMENT------ 使用表AUTO_INCREMENT `search`--ALTER TABLE `search` MODIFY `id` int(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34;---- 使用表AUTO_INCREMENT `type`--ALTER TABLE `type` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;;;;
<?php$link=mysqli_connect('localhost','root','','a');//然后是指定php链接数据库的字符集Mysqli_set_charset($link,'utf8');$sql="select * from search";//模糊查询出像数据库中的title或者content里面的值或者说像数据库中的title或者content里面的某一段值相对应的就行了,就可以输出啦$result=mysqli_query($link,$sql);//运行sql?><!--显示的效果--><!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title></head><body> <table border="1" cellpadding="5"> <tr> <td>id</td> <td>种类</td> <td>物品</td> <?php while ($row=mysqli_fetch_array($result)) {//把对象编程数组输出,不然会报错哦 # code... ?> <tr> <td><?=$row['id'];?></td> <td><?=$row['content'];?></td> <td><?=$row['type'];?></td> <td><a href="update.php?id=<?php echo $row['id']; ?>" rel="external nofollow" >更新</a></td> <td><a href="delete.php?id=<?php echo $row['id']; ?>" rel="external nofollow" >删除</a></td> </tr> <?php } ?> </tr> </table> <a href="create.php" rel="external nofollow" >创建</a></body></html>
<?php$link=mysqli_connect('localhost','root','','a');//然后是指定php链接数据库的字符集mysqli_set_charset($link,'utf8');//$sql = "DELETE FROM `search` WHERE `id` = '$_POST[id]'";//模糊查询出像数据库中的title或者content里面的值或者说像数据库中的title或者content里面的某一段值相对应的就行了,就可以输出啦$result=mysqli_query($link,"DELETE FROM search WHERE id ='$_GET[id]'");//运行sqlecho "<script>alert('恭喜你,删除成功了');location.href='index.php';</script>";?>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title></head><body> <fORM action="update.php" method="GET"> <input type="hidden" name="id" value="<?php echo $_GET['id']?>"> <td> <select name='type' width='500' class='selectfont'> <option value='-1'>请选择</option> <?php $link=mysqli_connect('localhost','root','','a'); //然后是指定php链接数据库的字符集 mysqli_set_charset($link,'utf8'); $sql='select * from type'; $re = mysqli_query($link,$sql); while($arr = mysqli_fetch_array($re)){ echo "<option value='".$arr['type']."'>".$arr['type']."</option>"; } ?> </select> <input type="text" name="content"> <input type="submit" value="修改"> </form></body></html><?phpif(!$_GET['content']||$_GET['type']==-1){ exit();}$link=mysqli_connect('localhost','root','','a');//然后是指定php链接数据库的字符集mysqli_set_charset($link,'utf8');//$sql = "DELETE FROM `search` WHERE `id` = '$_POST[id]'";//模糊查询出像数据库中的title或者content里面的值或者说像数据库中的title或者content里面的某一段值相对应的就行了,就可以输出啦$result=mysqli_query($link,"UPDATE search set content='$_GET[content]',type='$_GET[type]' WHERE id ='$_GET[id]'");//运行sql$sql="select * from search";//模糊查询出像数据库中的title或者content里面的值或者说像数据库中的title或者content里面的某一段值相对应的就行了,就可以输出啦$result=mysqli_query($link,$sql);//运行sqlecho "<script>alert('恭喜你,更新成功了');location.href='index.php';</script>";?>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title></head><body> <form action="create.php" method="POST"> <input type="text" name="content"> <td> <select name='type' width='500' class='selectfont'> <option value='-1'>请选择</option> <?php $link=mysqli_connect('localhost','root','','a'); //然后是指定php链接数据库的字符集 mysqli_set_charset($link,'utf8'); $sql='select * from type'; $re = mysqli_query($link,$sql); while($arr = mysqli_fetch_array($re)){ echo "<option value='".$arr['type']."'>".$arr['type']."</option>"; } ?> </select> </td> <input type="submit" value="创建"> </form></body></html><?phpif(!$_POST['content']||$_POST['type']==-1){ exit();}$content=$_POST['content'];$type=$_POST['type'];$link=mysqli_connect('localhost','root','','a');//然后是指定php链接数据库的字符集mysqli_set_charset($link,'utf8');$sql = "INSERT INTO search(content,type)VALUES ('{$content}','{$type}')"; $result=mysqli_query($link,$sql);if($result){echo "<script>alert('创建成功');location.href='index.php';</script>";}?>
感谢各位的阅读,以上就是“基于PHP怎么实现原生增删改查”的内容了,经过本文的学习后,相信大家对基于PHP怎么实现原生增删改查这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!
--结束END--
本文标题: 基于PHP怎么实现原生增删改查
本文链接: https://lsjlt.com/news/328518.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0