inc3.php

来自「六合特码投注系统」· PHP 代码 · 共 48 行

PHP
48
字号

	<table width="600" border="0" cellpadding="3" cellspacing="2">
      <tr>
        <td>
		赔率设定&nbsp;&nbsp;
		<a href="home.php?id=3&ida=0&idc=58">特号</a>
		</td>
      </tr>
    </table>
	<table width="320" border="0" cellpadding="4" cellspacing="1" bgcolor="#000066">
      <tr>
        <td align="center" bgcolor="#375d9e"><strong style="color:#FFFFFF">编号</strong></td>
        <td align="center" bgcolor="#375d9e"><strong style="color:#FFFFFF">类型</strong></td>
        <td align="center" bgcolor="#375d9e"><strong style="color:#FFFFFF">数字</strong></td>
        <td align="center" bgcolor="#375d9e"><strong style="color:#FFFFFF">赔率</strong></td>
        <td align="center" bgcolor="#375d9e"><strong style="color:#FFFFFF">设定</strong></td>
      </tr>
<?php
$ida=$_GET['ida'];
$idc=$_GET['idc'];

if (empty($ida))
$ida=0;
if (empty($idc))
$idc=58;

$exec="Select * from p order by id LIMIT ".$ida.",".$idc.""; 
mysql_query("set names gbk");
$resu=mysql_query($exec); 
$i=1;
while($rs=mysql_fetch_object($resu)) 
{ 
?>
      <tr>
        <td align="center" bgcolor="#FFFFFF"><?php Echo $i;?></td>
        <td align="center" bgcolor="#FFFFFF"><?php Echo $rs->s;?></td>
        <td align="center" bgcolor="#FFFFFF"><?php Echo $rs->sz;?></td>
        <td align="center" bgcolor="#FFFFFF"><?php Echo $rs->p;?></td>
        <td align="center" bgcolor="#FFFFFF">
		<a href="home.php?id=4&id2=<?php Echo $rs->id;?>">设定</a></td>
      </tr>
<?php
$i=$i+1;
} 
mysql_close();
?>
    </table>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?