Home >Backend Development >PHP Tutorial >安装使用PHPnow后程序无法使用有关问题

安装使用PHPnow后程序无法使用有关问题

WBOY
WBOYOriginal
2016-06-13 11:23:19826browse

安装使用PHPnow后程序无法使用问题

////////////////////////////////////////////////////////////////////// <br>(2)upload.php --- <br>//简要说明 <br>上传界面,用户选择文件,然后提交给submit.php处理 <br>值得注意的是一个 MAX_FILE_SIZE的隐藏值域,通过设置其VALUE可  <br>以限制上载文件的大小。 <br>//程序源码 <br>   <br>   <br><title>文件上传表单</title>   <br>   <br>   <br>
   
method='post'>   
 
  
   
选择上传文件  
type='submit'>
   
   
 

(3)submit.php --- 
//简要说明 
把用户上传得文件连同文件的基本信息保存到数据库里 
//程序源码 
    if($myfile != "none" && $myfile != "") { //有了上传文件了  

        //设置超时限制时间,缺省时间为 30秒,设置为0时为不限时 
        $time_limit=60;          
        set_time_limit($time_limit); // 

        //把文件内容读到字符串中 
        $fp=fopen($myfile,  "rb"); 
        if(!$fp) die("file open error"); 
        $file_data = addslashes(fread($fp, filesize($myfile))); 
        fclose($fp); 
        unlink($myfile);  
             
        //文件格式,名字,大小 
        $file_type=$myfile_type; 
        $file_name=$myfile_name; 
        $file_size=$myfile_size; 
     
        //连接数据库,把文件存到数据库中 
        $conn=mysql_connect("127.0.0.1","***","***"); 
        if(!$conn) die("error : mysql connect failed"); 
        mysql_select_db("test",$conn); 
         
        $sql="insert into receive  
        (file_data,file_type,file_name,file_size)  
        values ('$file_data','$file_type','$file_name',$file_size)"; 
        $result=mysql_query($sql); 
     
        //下面这句取出了刚才的insert语句的id 
        $id=mysql_insert_id(); 
     
        mysql_close($conn); 
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn