-2
これには何が問題なのかをデータベースにアップロードできないようです。ここMySql:データベースにファイルを格納する方法は?
は
これは、それがデータベース
<?php
include_once 'connectiontwo.php';
if(isset($_POST['btn-upload']))
{
$file = rand(1000,100000)."-".$_FILES['file']['name'];
$file_loc = $_FILES['file']['tmp_name'];
$file_size = $_FILES['file']['size'];
$file_type = $_FILES['file']['type'];
$folder="uploads/";
// new file size in KB
$new_size = $file_size/1024;
// new file size in KB
// make file name in lower case
$new_file_name = strtolower($file);
// make file name in lower case
$final_file=str_replace(' ','-',$new_file_name);
if(move_uploaded_file($file_loc,$folder.$final_file))
{
$sql="INSERT INTO module_let(module_desc,type,size) VALUES('$final_file','$file_type','$new_size')";
$conn->query($sql);
?>
<script>
alert('successfully uploaded');
window.location.href='indexsample.php?success';
</script>
<?php
}
else
{
?>
<script>
alert('error while uploading file');
window.location.href='indexsample.php?fail';
</script>
<?php
}
}
?>
にアップロードすることができるように、このコードがある
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "uphslletreviewer";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>
データベースに接続するためのファイルconnectiontwo.phpである私のコードです
あなたの助けが大いに評価されるでしょう...私はPHPに新しいので、私はあなたの助けを求めるためにここに来ました。ありがとうございました!
動作しませんか?エラー?何が起こるはずですか?詳細をお知らせください。また、SQL文字列をcomcatenしないでください。常にパラメータを使用してください。 –
データベースにファイルを格納するのは良い考えではありません。なぜなら、ファイルシステムを使用してデータベースのパスだけを格納しているのですから? –
final_file file_typeとnew_sizeをデータベースにアップロードできません –