Maison > php教程 > php手册 > le corps du texte

php基础教程:文件以二进制形式上传并放入数据库

PHP中文网
Libérer: 2017-03-21 14:18:41
original
1579 Les gens l'ont consulté

php基础教程:文件以二进制形式上传并放入数据库

conn.php:

<?php 
$id=mysql_connect(&#39;localhost&#39;,&#39;root&#39;,&#39;root&#39;);
mysql_select_db("db_database12",$id);
mysql_query("set names gb2312");
?>
Copier après la connexion

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"> </td>
    <td width="200"> </td>
    <td width="55"> </td>
  </tr>
  <form name="form1" method="post" action="index_ok.php" enctype="multipart/form-data">
  <tr>
    <td height="40"> </td>
    <td align="center" valign="middle">
     <input name="file2" type="file" id="file2" size="15" maxlength="150"></td>
    <td> </td>
  </tr>
  <tr>
    <td height="30"> </td>
    <td align="center"><input type="submit" name="Submit" value="提交"></td>
    <td> </td>
  </tr>
  </form>
  <tr>
    <td height="30"> </td>
    <td> </td>
    <td> </td>
  </tr>
</table>
</body>
</html>
Copier après la connexion

index_ok.php:

<?php 
session_start(); 
include("conn.php");?>
<?php
 if($Submit=="提交"){
$data=date("Y-m-d");
$file_name="file2";
$path = &#39;./upfiles/&#39;. $_FILES[&#39;file2&#39;][&#39;name&#39;];
if (move_uploaded_file($_FILES[&#39;file2&#39;][&#39;tmp_name&#39;],$path)) { 
	$query="insert into tb_file2(file_name,file_text,data)values(&#39;$file_name&#39;,&#39;$path&#39;,&#39;$data&#39;)";
	$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=文件上传\">";}
}}
?>
Copier après la connexion


Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!