⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 p_message.php

📁 十大精典PHP项目开发全程案例+代码
💻 PHP
字号:
<?php
	session_start();
	include "../inc/chec.php";
	include "../conn/conn.php";
?>
<link href="../css/style.css" rel="stylesheet" />
<script src="../js/client_js.js"></script>
<script src="../js/riq.js"></script>
<table width="765" border="1" cellpadding="0" cellspacing="0" class="big_td">
	<tr>
		<td height="33" background="../images/list.jpg" id="list">
		<?php
		if($_GET[u_id] == 9)
			echo "企业公告";
		elseif($_GET[u_id] == 10)
			echo "活动安排";
		?>
		</td>
	</tr>
</table>
<table width="765" border="1" cellpadding="0" cellspacing="0" bgcolor="#DEEBEF" class="big_td">
	<tr>
		<td width="100" height="25" align="center" valign="middle">发布时间</td>
		<td align="center" valign="middle">标题</td>
	</tr>
<?php
	if(isset($_GET[u_id])){
		$sqlstr = "select * from tb_person where u_id = ".$_GET[u_id];
		$result = mysql_query($sqlstr,$conn);
		while($rows = mysql_fetch_row($result)){
?>
	<tr>
		<td height=30 align=center valign=middle><?php echo $rows[3]; ?></td>
		<td style='text-indent: 30px;'>
		<a href="#" onclick="javascript:openWin=open('show_message.php?id=<?php echo $rows[0]; ?>','','width=300,height=200,scrollbars=no');"><?php echo $rows[1]; ?></a>
		</td>
	</tr>
<?php
		}}
?>
</table>

⌨️ 快捷键说明

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