0

作業中の Web サイトでこの単純なクエリを使用しようとしていますが、データベースにデータが挿入されません!

<?php
// Include database configuration
include('../config.php');

// Include ezSQL core
include_once "ezSQL/ez_sql_core.php";

// Include ezSQL database mysql component
include_once "ezSQL/ez_sql_mysql.php";

// Initialise database object and establish a connection
$db = new ezSQL_mysql($db_user,$db_pass,$db_database,$db_host);

$the_file = "video.mp4";
$the_image = "image.jpg";
$the_title = "Title";
$the_description = "lokr dry ceyrc cetcn cebtyn cetbny rnyfb rybrnr rybynum nyr";
$the_anime = "Anime";
$the_genre = "Genre";
$the_slug = "anime";

$db->query("INSERT INTO video (file, image, title, description, anime, genre, slug) VALUES ($the_file, $the_image, $the_title, $the_description, $the_anime, $the_genre, $the_slug)");

$db->debug();

?>

ここで私を少し助けてください!

4

2 に答える 2

1

挿入したい値は文字列なので、次のようにしてみてください。

$db->query("INSERT INTO video (file, image, title, description, anime, genre, slug) VALUES ('$the_file', '$the_image', '$the_title', '$the_description', '$the_anime', '$the_genre', '$the_slug')");
于 2013-06-01T10:22:40.933 に答える
0

数値以外のすべての列には引用符が必要です

$db->query("INSERT INTO video (file, image, title, description, anime, genre, slug) VALUES ('$the_file', '$the_image', '$the_title', '$the_description', '$the_anime', '$the_genre', '$the_slug')");
于 2013-06-01T10:20:54.077 に答える