|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
学校并没有那么多的时间可以让我们在实际开发上面。 PHP限制图片上传的格局,以下代码:
- <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>限制上传图片的格局
- www.cxybl.com</title> <style type="text/CSS"> <!-- .style1 { font-size: 14px; font-family: "汉文
行楷"; } .style4 {font-size: 12px; font-weight: bold; } --> </style> </head> <body> <table width="406" height="129" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="106" height="40"> </td> <td width="196"> </td> <td width="31"> </td> </tr> <form name="form1" method="post" action="index_ok.php" enctype="multipart/form-data"> <tr> <td height="32" align="right"><span class="style1">图片途径
</span>:</td> <td valign="middle"><input name="images" type="file" id="images2" size="15"> <input type="hidden" name="MAX_FILE_SIZE" value="30000"> </td> <td> </td> </tr> <tr> <td height="44" align="right" valign="middle"><span class="style4">图片的格局
</span>:</td> <td valign="middle"><span class="style4">(.jpg)</span> <input type="submit" name="Submit" value="提交"></td> <td> </td> </tr> </form> <tr> <td height="10"> </td> <td> </td> <td> </td> </tr> </table> </body> </html>
复制代码 conn.php:
- <?php $id=mysql_connect('localhost','root','root'); mysql_select_db("db_database12",$id); mysql_query("set names gb2312"); ?>
复制代码 index_ok.php:
- <?php session_start(); include("conn.php");?> <?php if($Submit=="提交"){ $data=date("Y-m-d"); $path = 'upfiles/'. $_FILES['images']['name']; $type=strstr($path,'.'); if($type!=".jpg"){echo "<script> alert('对不起,您上传的图片的格局
不合错误
!!'); history.back();</script>"; }else{ if (move_uploaded_file($_FILES['images']['tmp_name'],$path)) { $query1="insert into tb_image2(path,data,image_name)values('$path','$data','$images')"; $result1=mysql_query($query1); if($result1=true){ echo "上传胜利
!!"; echo "<meta http-equiv=\"Refresh\" content=\"3;url=index.php\">"; }else{echo "文件上传掉
败!!"; echo "<meta http-equiv=\"Refresh\" content=\"3;url=index.php\">";} }}} ?>
复制代码 现在,也有了从事软件工程的想法,在经过了一个月的PHP培训学习之后,发现其实软件工程并没有想像中的那么难。 |
|