/var/www/vhosts/m-auto.co/httpdocs/admin
Edit: /var/www/vhosts/m-auto.co/httpdocs/admin/video_form.php (7181B)
'',
'title' => '',
'description' => '',
'video_url' => '',
'video_file' => '',
'thumbnail' => '',
'video_type' => 'url',
'active' => 1
];
$page_title = "إضافة فيديو جديد";
if (isset($_GET['id'])) {
$video_id = $_GET['id'];
$stmt = $conn->prepare("SELECT * FROM videos WHERE id = ?");
$stmt->bind_param("i", $video_id);
$stmt->execute();
$result = $stmt->get_result();
if ($result->num_rows === 1) {
$video = $result->fetch_assoc();
$page_title = "تعديل الفيديو";
} else {
header("Location: videos.php?error=Video not found");
exit();
}
$stmt->close();
}
?>
= $page_title ?>