こんにちは、演習の 1 つのコードを変更しています。変更されたコードは実行されますが、このエラーが発生し続けます:
"Undefined index: category_id in C:\xampp\htdocs\ex_starts\ch04_ex1\add_category.php on line 5"
次のコードで、category_id のインデックスを初期化する方法を教えてください。
ありがとう!!
これは私のコードです:
<?php // Get the category data
$category_id = $_POST['category_id'];
$name = $_POST['name']; // Validate inputs
if ( empty($name) ) {
$error = "Invalid category data. Check all fields and try again.";
include('error.php');
} else {
// If valid, add the product to the database
require_once('database.php');
$query = "INSERT INTO categories
(categoryID, categoryName)
VALUES
('$category_id', '$name')";
$db->exec($query);
// Display the Category List page
include('category_list.php');
}
?>