prepare("SELECT * FROM golden_triangle WHERE id = ?"); if (!$stmt) { die("Prepare failed: (" . $conn->errno . ") " . $conn->error); } $stmt->bind_param("i", $id); $stmt->execute(); $result = $stmt->get_result(); if (!$result || $result->num_rows === 0) { echo "

Tour package not found.

"; include("footer.php"); exit; } $row = $result->fetch_assoc(); ?>
<?php echo htmlspecialchars($row['title']); ?>


(140)

Price:

Chat on WhatsApp
close(); $conn->close(); include("footer.php"); ?>