Home > Backend Development > PHP Tutorial > php新闻发布系统有关问题,

php新闻发布系统有关问题,

WBOY
Release: 2016-06-13 13:41:40
Original
1028 people have browsed it

php新闻发布系统问题,急!!!
请问PHP新闻发布系统后台管理中删除修改功能怎么获取数据库的id啊??怎么知道我删除的是哪条新闻啊?急!!

------解决方案--------------------
修改/删除 //不知道这个有没写错,意会就行了

将id 做为条件传递

modifynews.php 

$_GET['id']

然后处理这个id即可.
------解决方案--------------------

探讨
请问PHP新闻发布系统后台管理中删除修改功能怎么获取数据库的id啊??怎么知道我删除的是哪条新闻啊?急!!

------解决方案--------------------
你不是要先生成列表吗?
------解决方案--------------------
首先 你得在数据库里对新闻有个编号 id 只是个例子 你先看看你数据库里的是什么索引 或者唯一编号 名称


然后将 $row=mysql_fetch_array 修改成 mysql_fetch_assoc

然后你再在{
//添加一个 print_r($row);
//然后在页面看下这个数组的结构是怎么样的,你就清楚这个id 应该是具体哪一个了
//一般是 $row['id字段名'];
}

你得先弄懂这部分...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template