<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>网络相关</title>
<link>/html/edu/php/php7/index.html</link>
<description>编程开发 / PHP / 网络相关</description>
<language>zh-cn</language>
<generator>&lt;a href='http://www.souzz.net' target='_blank'&gt;搜站长&lt;/a&gt;</generator>
<webmaster>lyjrich@sina.com</webmaster>
<item>
    <title>PHP网站漏洞的相关总结</title>
    <link>/html/edu/php/php7/6530.html</link>
    <description>PHP网站漏洞的相关总结 从现在的网络安全来看,大家最关注和接触最多的WEB页面漏洞应该是ASP了,在这方面,小竹是专家,我没发言权.然而在PHP方面来看,也同样存在很严重的安全问题,但是这方面的文章却不多.在这里,就跟大家来稍微的讨论一下PHP页面的相关漏洞吧. 我对目前常</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>多文件上载系统完整版</title>
    <link>/html/edu/php/php7/6542.html</link>
    <description>＜?php //多文件上载系统完整版 //功能强大，可任意控制上载文件数，是否覆盖 include(../include/common.inc); $title = 多个文件的上载程序; include(../include/header.inc); //定义允许上载文件的数目 define(UPLOAD_NO, 10); echo(＜p align='center'＞＜font siz</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP出错界面</title>
    <link>/html/edu/php/php7/6543.html</link>
    <description>在web 上所有常见的错误之一就是无效的链接。一旦从其它站点上出现了无效的链接，你会重新安排你 的站点。人们会将他们喜欢的站点存成书签，如果在三个月后再次访问时，仅仅发现的是'404 Not Fount ' 时，将不会给他们任务帮助，告诉他们如何从你的站点去查找原始的信息</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>php中文件上传的安全问题</title>
    <link>/html/edu/php/php7/6544.html</link>
    <description>可以读/etc/passwd! 这段。。 [文件上载] PHP自动支持基于RFC 1867的文件上载，我们看下面的例子： FORM METHOD=POST ENCTYPE=multipart/form-data INPUT TYPE=FILE NAME=hello INPUT TYPE=HIDDEN NAME=MAX_FILE_SIZE VALUE=10240 INPUT TYPE=SUBMIT /FORM 上面的代码让</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>一个多文件上传的例子(原创)</title>
    <link>/html/edu/php/php7/6545.html</link>
    <description>? //filename:multi_upload.php if($ifupload) { $path=AddSlashes(dirname($PATH_TRANSLATED)).\\upload\\; for($i=1;$i=8;$i++) { $files=afile.$i; if(${$files}!=none) { if(copy(${$files},$path.${$files._name})) { } } } print bYou have uploaded files succes</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>ftp类(example.php)</title>
    <link>/html/edu/php/php7/6546.html</link>
    <description>flush(); $ftp_ini_datei= $argv[1]; require ('./ftp_class.php'); require ($ftp_ini_datei); echo \nCronjob started : ; echo date(d.m.Y- H:i:s); echo \n; $newftp= new myftp; if(!$anonymous){ $result= $newftp-connect($host, $user, $password); }else{ $res</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>ftp类（myftp.php）</title>
    <link>/html/edu/php/php7/6547.html</link>
    <description>?php class myftp { var $connector; var $getback; function connect($ftp_server, $uname, $passwd){ // Baut grundlegende FTP Connection auf $this-connector = @ftp_connect($ftp_server); $this-login_result = @ftp_login($this-connector, $uname, $passwd); i</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>一个ftp类（ini.php）</title>
    <link>/html/edu/php/php7/6548.html</link>
    <description></description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP的FTP学习（一）[转自奥索]</title>
    <link>/html/edu/php/php7/6549.html</link>
    <description>By Vikram Vaswani Melonfire November 07, 2000 我们是一群PHP的忠实FANS，我们因各种不同的原因使用它-WEB站点的开发，画图，数据库的联接等 -我们发现，它非常的友好，强大而且易于使用…… 你可能已经看到PHP是怎样被用于创建GIF和JPEG图像，从数据库中动态的获取信</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>文件上传类</title>
    <link>/html/edu/php/php7/6541.html</link>
    <description>使用示例: upload.php ?php include_once upload.class.php; if ($Submit != '') { $fileArr['file'] = $file; $fileArr['name'] = $file_name; $fileArr['size'] = $file_size; $fileArr['type'] = $file_type; /** 所允许上传的文件类型 */ $filetypes = array('gif',</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP编程网上游</title>
    <link>/html/edu/php/php7/6540.html</link>
    <description>一、PHP简介 引用PHP（Hgpertext Preprocessor或Personal Home Page Tools)的官方站点www.php.net的定义来说，PHP是一种服务器端、跨平台、HTML嵌入式的脚本语言。其实，它和大家所熟知的ASP一样，是一门常用于Web编程的语言。PHP酝酿于1994年，1995年发布其第一个公开</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>使用PHP连接LDAP服务器</title>
    <link>/html/edu/php/php7/6539.html</link>
    <description>本文将演示如何使用PHP连接一个LDAP服务器。具体的例子是连接到一个公共的LDAP服务器并且进行搜索。这个例子模拟的是Netscape Communicator 4.*，通过自己的地址本连接到LDAP资源。 LDAP介绍 可能不少人已经听说过LDAP，但是却不了解它具体是什么东东和如何工作。在这里</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP网上调查系统</title>
    <link>/html/edu/php/php7/6531.html</link>
    <description>PHP网上调查系统 这是一个简单的投票程序，对于刚学PHP和朋友来说是一个很不错的入门程序。在这里给大家介绍一下，希望能对朋友们有所帮助。 该系统是由以下四个文件组成的:有HTML调查表单的survey.htm,实现调查功能的survey.php,记录调查项目的data.txt和记录调查结果</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP个人网站架设连环讲(四)</title>
    <link>/html/edu/php/php7/6532.html</link>
    <description>三 首页新闻发布，让你更新更轻松（下） -----上一讲里，我们已经实现了首页新闻发布的基本功能。在这一讲里，我们再给它添砖加瓦，使它的功能更为强大。（一个好用的软件，其实也就是基本功能加上一批附属功能，这些附属功能主要也是图个方便而已，呵呵） -----首先，</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP个人网站架设连环讲(三)</title>
    <link>/html/edu/php/php7/6533.html</link>
    <description>三 首页新闻发布，让你更新更轻松（中） 上次我们做了一个文件头（至于文件尾，请大家自己做，假设为tail.php），一个函数的模块，现在，我们来一个基本功能的实现，也就是动态发布啦 ?php include(makestr.php; include(head.php); $newspath=/announce/; //以文本文件</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP个人网站架设连环讲(二)</title>
    <link>/html/edu/php/php7/6534.html</link>
    <description>三 首页新闻发布,让你更新更轻松(上) --------每次在首页中增加一条消息,加两句话,就得整个页面都上传一遍,真是不值!于是象蓝风这种懒汉就想了一个一劳永逸的办法,真正的动态实时,远程管理编辑,自动维护功能。也可以用来做虚拟社区的公告板。（如果改吧改吧，就可以把你</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP个人网站架设连环讲(一)</title>
    <link>/html/edu/php/php7/6535.html</link>
    <description>这里和大家交流一下架设个人网站的经验。不妥之处，敬请指正！ 一 编辑调试环境 win98本地编辑调试，爽不爽？先下一个Omnihttpd Proffesinal V2.06 ，装上就有PHP4beta3可以用了。如果你较懂HTML，推荐用EditPlus，相当好哦！否则只好用DreamWeaver先了。还要连数据库？</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP怎样连接Oracle</title>
    <link>/html/edu/php/php7/6536.html</link>
    <description></description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP实现禁止网外链接网址的方式查看网页</title>
    <link>/html/edu/php/php7/6537.html</link>
    <description>// 禁止网外链接（例如搜索引擎）查看网页内容 if(!empty($_SERVER['HTTP_REFERER'])) { preg_match(/^(http:\/\/)?([^\/]+)/i,$_SERVER['HTTP_REFERER'], $matches); $host = $matches[2]; if(($host==211.152.50.35)||($host==www.phpv.net)) { } else { header(Locat</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>关于下载doc,xls文件的办法(java source)</title>
    <link>/html/edu/php/php7/6538.html</link>
    <description></description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP的FTP学习（二）[转自奥索]</title>
    <link>/html/edu/php/php7/6550.html</link>
    <description>现在终于到了我们的第三个文件，include.php 它为程序建立起一个用户界面。 include.php 包含三个表单，一些PHP代码获取当前的目录列表并将它们存入三个变量 $files (包括当前目录下的文件）, $file_sizes (相应的文件大小), and $dirs (包含子目录名) 第一个表单使用$d</description>
    <pubDate>2005-11-07</pubDate>
    <category>网络相关</category>
    <author>未知</author>
    <comments>未知</comments>
</item>

</channel>
</rss>
