新手2

WBOY
Release: 2016-06-23 13:51:22
Original
826 people have browsed it

nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



待审核文章列表

$conn=mysql_connect("localhost","admin","");
mysql_select_db("test",$conn);
mysql_query("set names utf8");

session_start();




?>

以下是待审核文章







$sql="SELECT * FROM `lyb` WHERE ID='1' ";
$squery=mysql_query($sql);
$res=mysql_query($sql);
$num=mysql_num_rows($res);
$page=isset($_GET['page'])?$_GET['page']:1;

if($page {
$page=1;
}
$pagesize=3;
$tl=$num/$pagesize;
$tl=ceil($tl);
$tou=($page-1)*$pagesize;
$sql="SELECT * FROM `lyb` WHERE ID='1' order by uid desc limit $tou,$pagesize";
$res=mysql_query($sql);





while($row=mysql_fetch_array($res)){
?>










题目:  


留言人:  



内容:
 


 留言时间:  












通过删除" value="确定" />





 



  首页
     if($page>1){?>  ">上一页   }?>     if($page">下一页  ">末页
           第页/共页        共条留言   转到第



if(isset($_POST['submit']))
{
$as=$_POST["page"];
if($as {
echo"<script>location.href=('dshwz.php?page=1');</script>";
}
if($as>1&&$as {
echo"<script>location.href=('dshwz.php?page=$as');</script>";
}
if($as>$tl)
{
echo"<script>location.href=('dshwz.php?page=$tl');</script>";
}

}
?>










这是一个关于文章审核的php,我想做到的是点击确定按钮,通过判断“zg”的value的值为0还是1,若是0的话,通过,若是1的话,删除。

但是现在不知道才能做到点击确定按钮后,把相应的uid(每一篇文章都有一个对应的uid)传出来


回复讨论(解决方案)

求大神帮助!!

每一个确定以超链接的形式get传值进行判断是最直接的 你现在的表单形式是包裹所有的数据的 区分相应的数据有些复杂,可以一个确定一个表单。超链接形式是最简单的 goodlock

只是核审或者删除而已。
按你目前的,你可以把ID写在隐藏域里,post过去,接收到就行了。不过,你要每条留言一个表单,不要把所有留言放在一个表单里。

其实,不用表单提交,直接按钮点击跳转或者链接也行的。弄两个按钮,一个是通过,一个是删除,不用选择加按钮的形式。不同按钮,url后面的都带上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