35261-vm/search.php
Flatlogic Bot 12b99fe8f7 1.0
2025-10-26 20:00:21 +00:00

21 lines
784 B
PHP

<?php
$query = isset($_GET['q']) ? htmlspecialchars($_GET['q']) : '';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Results for &quot;<?php echo $query; ?>&quot;</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body>
<div class="container mt-5">
<h1>Search Results for &quot;<?php echo $query; ?>&quot;</h1>
<p>This is a placeholder for the search results. In the future, this page will display the actual search results for your query.</p>
<a href="index.php">Back to search</a>
</div>
</body>
</html>