Home > Backend Development > PHP Tutorial > 初学者,php 在后台编辑、预览某条新闻,获取不到ID

初学者,php 在后台编辑、预览某条新闻,获取不到ID

WBOY
Release: 2016-06-13 12:03:22
Original
1180 people have browsed it

菜鸟求助,php 在后台编辑、预览某条新闻,获取不到ID

本帖最后由 lovejing2008 于 2014-07-12 17:06:11 编辑 初学php ,试着做了个新闻小例子,在后台编辑、预览某条新闻的时候 ,id传不过来,获取不到对应的内容,麻烦各位帮忙看看

鼠标放在预览、编辑那里 ,显示的地址 是  xxxx/admin/news.php?id=          

news.php 页面

news.php 页面<br /><br /><?php<br />$id=$_GET["id"];<br /><br />if($_POST["content_id"])<br />{<br />	$content_id=$_GET["content_id"];	<br />			$class=($_POST["class"]);<br />$classdate=($_POST["classdate"]);<br />$teacher=($_POST["teacher"]);<br /><br />}<br />		$sql="select * from fk_content  where content_id=$id";<br />	$rs=mysql_query($sql);<br />	$rows=mysql_fetch_assoc($rs);<br />	<br />?>
Copy after login



list.php 页面 <br /><br /> <td class="td_bg" width="10%" height="26">  <br /> <a href="news.php?id="<?php echo $rows[content_id];?> target="_blank">浏览</a><br /><br /></td>
Copy after login




数据库字段如图


拜求各位老师 帮帮忙看下,
------解决方案--------------------
那句改为:
浏览

另外,print_r($rows); 看看是什么结果。

------解决方案--------------------
<?php echo $rows['content_id'];?>
Copy after login

------解决方案--------------------
id=" 注意闭合
------解决方案--------------------
  target="_blank">浏览

缺少
------解决方案--------------------
原来PHP格式里不能再加颜色标签,重来:
" target="_blank">浏览
红色部分要在引号里,基础HTML知识。。。。
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