码迷,mamicode.com
首页 > 其他好文 > 详细

织梦自己写的投票程序

时间:2015-01-13 08:55:52      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

<?php
ob_start();
session_start();
require_once("config.php");
?>

<!---表单部分
点击投票
<form name="frm" action="{dede:global.cfg_cmsurl/}/toupiao/index.php" method="post">
<input type="hidden" name="itm" value="{dede:field.aid/}" >
<input type="submit" value="投票" />
</form>

-->
<a href="javascript:history.go(-1);">向上一页</a>
<?php
//print_r($_POST);

if(@$_POST["itm"]){

if(@$_SESSION["vote"]==session_id())
{
?>
<script language="javascript">
alert("您已经投票了");
location.href="javascript:history.go(-1);";
</script>
<?php
exit();
}

$id=$_POST["itm"];
$sql="update dede_addon17 set num=num+1 where aid=$id";
if(mysql_query($sql))
{
$_SESSION["vote"]=session_id();
?>
<script language="javascript">alert("投票成功");location.href="javascript:history.go(-1);";</script>
<?php
}
else
{
?>
<script language="javascript">alert("投票失败");location.href="javascript:history.go(-1);";</script>
<?php
}
}
?>

 

织梦自己写的投票程序

标签:

原文地址:http://www.cnblogs.com/yang95/p/4220357.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!