码迷,mamicode.com
首页 > 数据库 > 详细

php文件以二进制形式上传并放入到数据库中

时间:2016-11-05 17:59:08      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:body   values   query   res   for   method   start   index.php   上传文件   

conn.php:

<?php 
$id=mysql_connect(‘localhost‘,‘root‘,‘root‘);
mysql_select_db("db_database12",$id);
mysql_query("set names gb2312");
?>

index.php:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>上传文件到服务器</title>
<style type="text/css">
<!--
body {
	margin-left: 00px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
-->
</style></head>

<body>
<table width="385" height="185" border="0" cellpadding="0" cellspacing="0" >
  <tr>
    <td width="130" height="85">&nbsp;</td>
    <td width="200">&nbsp;</td>
    <td width="55">&nbsp;</td>
  </tr>
  <form name="form1" method="post" action="index_ok.php" enctype="multipart/form-data">
  <tr>
    <td height="40">&nbsp;</td>2881064151
    <td align="center" valign="middle">
     <input name="file2" type="file" id="file2" size="15" maxlength="150"></td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td height="30">&nbsp;</td>
    <td align="center"><input type="submit" name="Submit" value="提交"></td>
    <td>&nbsp;</td>
  </tr>
  </form>
  <tr>
    <td height="30">&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>
</body>
</html>

index_ok.php:

<?php 
session_start(); 
include("conn.php");?>
<?php
 if($Submit=="提交"){
$data=date("Y-m-d");
$file_name="file2";
$path = ‘./upfiles/‘. $_FILES[‘file2‘][‘name‘];
if (move_uploaded_file($_FILES[‘file2‘][‘tmp_name‘],$path)) { 
	$query="insert into tb_file2(file_name,file_text,data)values(‘$file_name‘,‘$path‘,‘$data‘)";
	$result=mysql_query($query);
	if($result=true){ 
	echo "上传成功!!";
	echo "<meta http-equiv=\"Refresh\" content=\"3;url=index.php?lmbs=文件上传\">"; 
	}else{echo "文件上传失败!!";
          echo "<meta http-equiv=\"Refresh\" content=\"3;url=index.php?lmbs=文件上传\">";}
}}
?>

php文件以二进制形式上传并放入到数据库中

标签:body   values   query   res   for   method   start   index.php   上传文件   

原文地址:http://www.cnblogs.com/cbryge/p/6033497.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!