gusucode.com > 监控设备公司网站源码程序 > 监控设备公司网站源码程序/code/tools/admin/qq_mod.php

    <?php
define("ROOTPATH", "../../");
include(ROOTPATH."includes/admin.inc.php");
include("language/".$sLan.".php");
NeedAuth(84);

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head >
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link  href="css/style.css" type="text/css" rel="stylesheet">
<title><?php echo $strAdminTitle; ?></title>
<script type="text/javascript" src="../../base/js/base.js"></script>
<script type="text/javascript" src="../../base/js/form.js"></script>
<script type="text/javascript" src="../../base/js/blockui.js"></script>
<script type="text/javascript" src="js/qq.js"></script>

</head>
<body >

<?php

$id=$_REQUEST["id"];

$msql->query("select * from {P}_tools_code where cat='qq' and id='$id' ");
if($msql->next_record()){
	$qq=$msql->f('qq');
	$name=$msql->f('name');
	$position=$msql->f('position');
	$tel=$msql->f('tel');
	$phone=$msql->f('phone');
	$memo=$msql->f('memo');
	$code=$msql->f('code');
	$xuhao=$msql->f('xuhao');
}

?> 


<form id="qqModForm" name="form" action="" method="post" enctype="multipart/form-data">

<div class="formzone">

<div class="namezone">
QQ客服系统--修改QQ客服
</div>
<div class="tablezone">
<div  id="notice" class="noticediv"></div>

<table width="100%"   border="0" align="center"  cellpadding="2" cellspacing="0" >
  <tr>
    <td height="30" align="center" >QQ号码</td>
    <td height="30" ><input type="text" name="qq" style='WIDTH: 499px;font-size:12px;' maxlength="15" value="<?php echo $qq; ?>" class="input" />
        <span style="color:#ff0000;">* </span></td>
  </tr>
  <tr>
    <td height="30" align="center" >姓名</td>
    <td height="30" ><input type="text" name="name" style='WIDTH: 499px;font-size:12px;' value="<?php echo $name; ?>" class="input" /></td>
  </tr>
  <tr>
    <td height="30" align="center" >职务</td>
    <td height="30" ><input type="text" name="position" style='WIDTH: 499px;font-size:12px;' value="<?php echo $position; ?>" class="input" /></td>
  </tr>
  <tr>
    <td height="30" align="center" >电话号码</td>
    <td height="30" ><input type="text" name="tel" style='WIDTH: 499px;font-size:12px;' value="<?php echo $tel; ?>" class="input" /></td>
  </tr>
    <tr>
      <td width="100" height="30" align="center" >手机号码</td>
      <td height="30" ><input type="text" name="phone" style='WIDTH: 499px;font-size:12px;' value="<?php echo $phone; ?>" class="input" /></td>
    </tr>
	 <tr>
       <td height="30" align="center" >序号</td>
	   <td height="30" ><input type="text" name="xuhao" style='WIDTH: 50px;font-size:12px;' maxlength="11" value="<?php echo $xuhao; ?>" class="input" /></td>
	   </tr>
	</table>
	
	<table width="100%"   border="0" align="center"  cellpadding="2" cellspacing="0" >
	  <tr>
        <td height="30" align="center" >备注</td>
	    <td height="30" ><textarea name="memo" style="WIDTH: 499px;font-size:12px;" class="textarea" rows="8"><?php echo $memo; ?></textarea></td>
	  </tr>
    <tr>
      <td width="100" height="30" align="center" >QQ代码</td>
      <td height="30" ><textarea name="code" style="WIDTH: 499px;font-size:12px;" class="textarea" rows="8"><?php echo $code; ?></textarea> <span style="color:#ff0000;">* </span>      请使用QQ官方提供代码,代码中的QQ号码请填写准确      </td>
    </tr>
</table>
</div>
<div class="adminsubmit">
<input type="submit" name="modi"  value="<?php echo $strSubmit; ?>" class="button" />
<input type="hidden" name="act" value="qqmodify">
<input type="hidden" id="id" name="id" value="<?php echo $id; ?>" />
<input type="hidden" name="author"  value="<?php echo $_COOKIE['SYSNAME']; ?>" />
</div>

</div>
</form>
</body>
</html>