📄 drate_six_animal.php
字号:
<?php
session_start();
include("checks.php");
include("../inc/conn.php");
$_SESSION["menus"]="修改默认赔率";
$sql=mysql_query("select * from dnum where sign='9' order by id asc",$conn);
if(isset($_POST["id"]))
{ $id=$_POST["id"];
$rate=chop($_POST["rate"]);
if($rate<>"")
{
$sqlgc=mysql_query("select * from dnum where ID='$id'",$conn); //变更更新
if(mysql_num_rows($sqlgc)<>0)
{
$gup=mysql_result($sqlgc,0,"rate");
mysql_query("update dnum set brate='$gup' where ID='$id'",$conn);
} $timep=date("YmdHis");
$ok=mysql_query("update dnum set rate='$rate',brate='$rate',bnum='0',m='1',h='1',uptime='$timep' where ID='$id'",$conn);
if($ok) echo " <font color='red'><strong>修改成功!</strong></font>";
echo "<meta http-equiv='refresh' content='3;URL=drate_six_animal.php?menu=8'>";
}else
{
echo " <font color='red'><strong>请输入赔率!</strong></font>";
}
}
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../css/css.CSS" rel="stylesheet" type="text/css">
<title></title>
<style type="text/css">
<!--
body {
margin-left: 10px;
}
-->
</style></head>
<body>
<?php include("drate_menu.inc.php");?>
<br>
<br>
<br>
<table width="271" height="48" border="0" align="left" cellpadding="0" cellspacing="0" class="tmove">
<tr>
<td width="271" height="48" valign="top"><table width="271" height="48" border="0" cellpadding="0" cellspacing="1" class="t12">
<tr class="t11">
<td width="72" height="22"><div align="center" class="fw12">类型</div></td>
<td width="80"><div align="center" class="fw12">当前赔率</div></td>
<td width="115"><div align="center" class="fw12">修改赔率</div></td>
</tr>
<?php
while($row=mysql_fetch_array($sql))
{
?>
<form name="form2" method="post" action="drate_six_animal.php?menu=5">
<tr class="t17">
<td height="23"><div align="center"><strong>
<?=$row["tp"]?>
</strong></div></td>
<td><div align="center"> <span class="fbred">
<?=$row["rate"]?>
</span>
<input name="id" type="hidden" id="id2" value="<?=$row["ID"]?>">
</div></td>
<td><div align="center" class="fbred">
<input name="rate" type="text" class="input" id="rate_num2" size="5" ONKEYPRESS="event.returnValue=Isnum();">
<input type="submit" name="Submit" value="修改">
</div></td>
</tr>
</form>
<? }?>
</table></td>
</tr>
</table>
</body>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -