2014年(20)
发布时间:2014-10-23 21:53:02
一篇文章复制过来,发现图片路径都是别人网站的,如何一键下载这些图片到本地,并且修改成为本地的路径呢。 代码如下 复制代码 /** * 获取替换文章中的图片路径 * @param string $xstr 内容 采集网页的content * @param string $keyword 创建照片的文件名 我写upimg * @par.........【阅读全文】
发布时间: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 --.........【阅读全文】