第21例
check.php页面:
<?php
//图片上传到服务器
function fileext($filename)
{
return substr(strrchr($filename,'.'),1); //获取扩展名
}
function random($length)
{ //生成随机文件名函数
$hash='CR-';
$chars='abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz';
$max=strlen($chars)-1;
mt_srand((double)microtime()*1000000);
for($i=0;$i<$length;$i++)
{
$hash.=$chars(mt_rand(0,$max));
}
return $hash;
}
?>
form.php页面:
<form action="upload.php" method="post" enctype="multipart/form-data"><!--定义method属性-->
<table border="0" cellspacing="0" cellpadding="0" align="center" width="300px">
<tr>
<td width="55" height="20" align="center">
<input type="hidden" name="MAX_FILE_SIZE" value="2000000"/>文件:
</td>
<td height="16">
<input type="file" name="file" value="浏览"/>
</td>
</tr>
<tr>
<td align="center" colspan="2"><br />
<input type="submit" name="B1" value="上传"/>
</td>
</tr>
</table>
</form>
upload.php页面:
<?php
include("check.php");
$uploaddir="./files?";
$type=array("jpg","gif","bmp","jpeg","pan");//设置允许上传文件的类型
if(!in_array(strtolower(fileext($_FILES['file']['name'])),$type))//判断上传文件的类型是否在范围内
{
$text=implode(",",$type);
echo "您只能上传以下类型文件:",$text,"<br/>";
}else
{
$filename=explode(".",$_FILES['file']['name']);//获取文件名
do{
$filename[0]=random(10);
$name=implode(".",$filename);
$uploadfile=$upload.$name;
}
while(file_exists($uploadfile));
if(is_uploaded_file($_FILES['file']['tmp_name']))
{
if(move_uploaded_file($_FILES['file']['tmp_name'],$uploadfile))
{
echo "<center>您的文件已经上传完毕 上传图片预览:</center><br/><center><img src='$uploadfile'></center";
echo "<br/><center><a href='javascript:history.go(-1)'>继续上传</a></center>";
}else
{
echo "上传失败";
}
}
}
?>
第22例
<!--在外部文件中读取并显示用户协议-->
<table width="100" border="0" cellpadding="1" cellspacing="1" bgcolor="#cccccc">
<tr>
<td bgcolor="#ffffff">
<!--写文本内容要加载区-->
</td>
</tr>
</table>
<form action="zhuce.php" method="post" name="register" id="form">
<input type="hidden" name="action" id="action" value="agree"/>
<input type="submit" name="submit" value="同意"/>
</form>
<form action="" method="post" name="form" id="from">
<a href="index.php">
<input type="reset" name="reset1" id="reset1" value="不同意"/>
</a>
</form>
另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
新闻标题:php程序设计经典300例,第23-25例-创新互联
本文地址:https://www.cdcxhl.com/article38/dcjesp.html
成都网站建设公司_创新互联,为您提供关键词优化、微信小程序、网站建设、动态网站、网站排名、外贸建站
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联