📄 mfy_disp.php
字号:
<link href="css.css" rel="stylesheet" type="text/css">
<?php
include_once"head.php";
include_once"config.php";
$sql="SELECT id,name,sex,birthday,phone,email,qq,address,note,photo FROM cmate where id='$id'";
$conn = @mysql_connect($Host, $User, $Password); //打开数据库
$result = @mysql_db_query($Database,$sql,$conn); //调用指令
$row = @mysql_fetch_row($result);
@mysql_close($conn); //关闭数据库
?>
<table width="750" border="0" align="center" cellpadding="0" cellspacing="0" class="table">
<tr>
<td width="172" height="521" valign="top"> </td>
<td width="576">
<div id="main">
<table align="center" width="500" border="0" cellpadding="0" cellspacing="1" bgcolor="#556B2F" class="table">
<tr> <td width="100%" height="100%">
<form align="center" id="form1" name="form1" method="post" action="modify.php?id=<?=$row[0]?>">
<p>姓名:
<input name="name" type="text" value="<?=$row[1]?>" maxlength="10" size="20"/>
<p>
性别:<? if($row[2]==1)
echo "<input name='sex' type='radio' value='1'男 checked='checked' /> 男
<input name='sex' type='radio' value='0'女 /> 女";
else
echo "<input name='sex' type='radio' value='1'男 /> 男
<input name='sex' type='radio' value='0'女 checked='checked'/> 女";
?>
<p>
生日:
<input name="birthday" type="text" value="<?=$row[3]?>"/>
<p>
电话:
<input name="phone" type="text" value="<?=$row[4]?>"/>
<p>
邮箱:
<input name="email" type="text" value="<?=$row[5]?>"/>
<p>
Q Q :
<input name="qq" type="text" value="<?=$row[6]?>"/>
<p>
地址:
<input name="address" type="text" value="<?=$row[7]?>"/>
<p>
图像:
<img src="<?=$row[9]?>" id="head">
<p>
留言:
<textarea name="note" cols="25" rows="5"><?=$row[8]?></textarea>
</p>
<input name="submit" type="submit" id="submit" value="提交" class="table" />
<input name="reset" type="reset" id="reset" value="重置" class="table" />
</form>
[<a href="index.php">查看留言</a>]|[<a href="JavaScript:history.go(-1)">返回</a>]
</td> </tr> </table>
</td></tr></table>
</td>
</div>
</tr>
</table>
<?include_once"copyright.php"?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -