/var/www/vhosts/m-auto.co/httpdocs/admin
Edit: /var/www/vhosts/m-auto.co/httpdocs/admin/category_form.php (1607B)
'', 'name' => ''];
$page_title = "إضافة فئة جديدة";
if (isset($_GET['id'])) {
$category_id = $_GET['id'];
$stmt = $conn->prepare("SELECT * FROM categories WHERE id = ?");
$stmt->bind_param("i", $category_id);
$stmt->execute();
$result = $stmt->get_result();
if ($result->num_rows === 1) {
$category = $result->fetch_assoc();
$page_title = "تعديل الفئة";
} else {
header("Location: categories.php?error=Category not found");
exit();
}
$stmt->close();
}
?>
= $page_title ?>