PHP实现的WEB方式的FTP客户端程序
时间:2007-02-17 来源:PHP爱好者
作者/来源:guest
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
PHP实现的WEB方式的FTP客户端程序
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
此程序需要FTP函数支持。来源:中国PHP联盟 www.phpx.com
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
原文件 http://inebria.com/phpftp/ftp.phps
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
请注意为了节省篇幅,这里省略了作者的版权声明
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
ftp.php3
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
<?php
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
function phpftp_top() {
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<!-- function phpftp_top --> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<html> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<head> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<title>PHP FTP Client v1.4</title> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "</head> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<body bgcolor="#ffffff"> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<font face="courier"> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
}
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
function phpftp_bottom() {
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo " <!-- function phpftp_bottom --> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "</font> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "</body> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "</html> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
}
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
function phpftp_login() {
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
phpftp_top();
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<!-- function phpftp_login --> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<p> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<form action="ftp.php3" method=post> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "Login:牋牋?;
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<input name="phpftp_user" type="text"> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<p> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "Password:牋";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<input name="phpftp_passwd" type="password"> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<p> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "Directory:?;
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<input name="phpftp_dir" type="text"> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<p> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo
php爱好者站 http://www.phpfans.net php基础|php进阶|php模板.
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
PHP实现的WEB方式的FTP客户端程序
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
此程序需要FTP函数支持。来源:中国PHP联盟 www.phpx.com
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
原文件 http://inebria.com/phpftp/ftp.phps
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
请注意为了节省篇幅,这里省略了作者的版权声明
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
ftp.php3
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
<?php
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
function phpftp_top() {
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<!-- function phpftp_top --> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<html> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<head> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<title>PHP FTP Client v1.4</title> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "</head> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<body bgcolor="#ffffff"> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<font face="courier"> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
}
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
function phpftp_bottom() {
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo " <!-- function phpftp_bottom --> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "</font> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "</body> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "</html> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
}
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
function phpftp_login() {
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
phpftp_top();
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<!-- function phpftp_login --> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<p> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<form action="ftp.php3" method=post> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "Login:牋牋?;
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<input name="phpftp_user" type="text"> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<p> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "Password:牋";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<input name="phpftp_passwd" type="password"> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<p> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "Directory:?;
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<input name="phpftp_dir" type="text"> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo "<p> ";
c hina it power . c omtTtqJ5WaFrld6cl3qWtGf3aZs
echo
php爱好者站 http://www.phpfans.net php基础|php进阶|php模板.
相关阅读 更多 +