次のコードを実行すると、画像は目的のフォルダーに移動されますが、データベースには何も保存されません。画像の名前をデータベースに保存する方法。助けてください...
mysqli_query($con,"INSERT INTO blog (title, image, content)
VALUES ('$_POST[title]','$_POST[image]','$_POST[content]')");
$target_Path = "uploaded/";
$target_Path = $target_Path.basename( $_FILES['image']['name'] );
move_uploaded_file( $_FILES['image']['tmp_name'], $target_Path );