发布时间:2014-10-23 21:52:00
<?php include_once ("sql_connect.php"); include_once ("my_msg.php"); ?> <html> <head> <meta http- equiv="content-type" content="text/html" charset=utf-8 /> <title& gt;会员功能表</title> < /head> <body bgcolor = "white" text="black" link="blue" vlink="purple.........【阅读全文】
发布时间:2014-10-17 22:04:14
程序代码 代码如下 复制代码 <?//数据库连接就不写在这里面了$s = isset( $_GET['s'] )?$_GET['s']:0;$e = isset( $_GET['e'])?$_GET['e']:50;$count =85000;if( $s < $count ){ $sql = "select * from 表前缀_info where isget =0 order by id desc limit $s,$e "; $query = mysql_quer.........【阅读全文】
发布时间:2014-10-15 21:07:20
函数原型:$.post(url, params, callback) url是提交的地址,eg: "sample.ashx"params是参数,eg: { name:"xxx" , id:"001" }callback是回调函数,eg: function(msg){ alert(msg); }注意1:在sample.ashx那段,使用context.Request["id"]和context.Request["name"]来分别获得值"001"和值"xxx",而不是.........【阅读全文】
发布时间:2014-10-11 20:28:51
我需要700至800之间的端口都能tcp访问 代码如下 复制代码 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 700 -j ACCEPT -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 701 -j ACCEPT -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --.........【阅读全文】
发布时间:2014-10-08 21:07:02
json_encode()函数用法。echo json_encode(array('a'=>'bbbb','c'=>'ddddd');这样就会生成一个标准的json格式的数据 代码如下 复制代码 <?php//需要执行的SQL语句//单条$sql="select id,name from tbl_user where id=1";//多条数据//$sql="select id,name from tbl_user";//调用conn.php文件.........【阅读全文】