php upload image with form not working

后端 未结 2 682
臣服心动
臣服心动 2021-01-28 07:00

I tried a lot suggestions at other people\'s threats about the same problem, but they didn\'t work. Can anyone see what I\'m doing wrong?

Part of my form:



        
2条回答
  •  孤独总比滥情好
    2021-01-28 07:18

    try this

    file";
    exit;
    }
    
    if(!get_magic_quotes_gpc())
    {
        $fileName = addslashes($fileName);
        $filePath = addslashes($filePath);
    }
    
    $title = $_POST['title'];
    $description = $_POST['description'];
    
    $query = "INSERT INTO ".$user_pictures." (file, title, description) VALUES ('".$filePath."', '".$title."', '".$description."')";
    
    mssql_query($query); 
    
    }
    
    ?>
    

提交回复
热议问题