prepare("SELECT * FROM dress WHERE id = ?"); $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']); ?>

Price:

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