You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
YOLO/search_results.php

185 lines
8.4 KiB

<?php
session_start();
include 'connect.php';
// Check if the user is logged in
if (!isset($_SESSION['email'])) {
header("Location: login.php");
exit();
}
try {
// Initialize arrays for query building
$where_conditions = [];
$params = [];
$types = "";
// Search by job title or description
if (!empty($_GET['search'])) {
$where_conditions[] = "(job_title LIKE ? OR job_description LIKE ?)";
$search_term = "%" . $_GET['search'] . "%";
$params[] = $search_term;
$params[] = $search_term;
$types .= "ss";
}
// Job type filter
if (!empty($_GET['job_type'])) {
$where_conditions[] = "job_type = ?";
$params[] = $_GET['job_type'];
$types .= "s";
}
// Salary type filter
if (!empty($_GET['salary_type'])) {
$where_conditions[] = "salary_type = ?"; // Changed to match the exact column name
$params[] = $_GET['salary_type'];
$types .= "s";
}
// Skills level filter
if (!empty($_GET['skills_level'])) {
$where_conditions[] = "skills_level = ?";
$params[] = $_GET['skills_level'];
$types .= "s";
}
// Construct the SQL query
$sql = "SELECT * FROM job_postings";
// Add WHERE clause if there are conditions
if (!empty($where_conditions)) {
$sql .= " WHERE " . implode(" AND ", $where_conditions);
}
// Add ordering
$sql .= " ORDER BY posted_date DESC";
// Prepare and execute the query
$stmt = $conn->prepare($sql);
if (!empty($params)) {
$stmt->bind_param($types, ...$params);
}
$stmt->execute();
$result = $stmt->get_result();
?>
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Results • TempHire</title>
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.7.2/dist/full.min.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="min-h-screen bg-base-200">
<?php include 'navbar.php'; ?>
<main class="container mx-auto px-4 py-8">
<div class="text-sm breadcrumbs mb-6">
<ul>
<li><a href="index.php">Home</a></li>
<li class="text-primary">Search Results</li>
</ul>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
<?php
if ($result && $result->num_rows > 0) {
while ($job = $result->fetch_assoc()) {
?>
<div class="lg:col-span-1">
<div class="card bg-base-100 shadow-xl">
<div class="card-body">
<h2 class="card-title text-xl mb-4"><?= htmlspecialchars($job['job_title']) ?></h2>
<div class="space-y-4">
<!-- Location -->
<div class="flex items-center gap-3">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-primary" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M5.05 4.05a7 7 0 119.9 9.9L10 18.9l-4.95-4.95a7 7 0 010-9.9zM10 11a2 2 0 100-4 2 2 0 000 4z" clip-rule="evenodd" />
</svg>
<div>
<div class="text-sm opacity-70">Location</div>
<div class="font-medium"><?= htmlspecialchars($job['location']) ?></div>
</div>
</div>
<!-- Salary and Type -->
<div class="flex items-center gap-3">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-primary" viewBox="0 0 20 20" fill="currentColor">
<path d="M8.433 7.418c.155-.103.346-.196.567-.267v1.698a2.305 2.305 0 01-.567-.267C8.07 8.34 8 8.114 8 8c0-.114.07-.34.433-.582zM11 12.849v-1.698c.22.071.412.164.567.267.364.243.433.468.433.582 0 .114-.07.34-.433.582a2.305 2.305 0 01-.567.267z" />
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-13a1 1 0 10-2 0v.092a4.535 4.535 0 00-1.676.662C6.602 6.234 6 7.009 6 8c0 .99.602 1.765 1.324 2.246.48.32 1.054.545 1.676.662v1.941c-.391-.127-.68-.317-.843-.504a1 1 0 10-1.51 1.31c.562.649 1.413 1.076 2.353 1.253V15a1 1 0 102 0v-.092a4.535 4.535 0 001.676-.662C13.398 13.766" />
</svg>
<div>
<div class="text-sm opacity-70">Salary (<?= htmlspecialchars($job['salary_type']) ?>)</div>
<div class="font-medium"><?= htmlspecialchars($job['salary']) ?></div>
</div>
</div>
<!-- Job Type -->
<div class="flex items-center gap-3">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-primary" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
</svg>
<div>
<div class="text-sm opacity-70">Job Type</div>
<div class="font-medium"><?= htmlspecialchars($job['job_type']) ?></div>
</div>
</div>
<!-- Skills Level -->
<div class="flex items-center gap-3">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-primary" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" />
</svg>
<div>
<div class="text-sm opacity-70">Required Skills</div>
<div class="font-medium"><?= htmlspecialchars($job['skills_level']) ?></div>
</div>
</div>
<div class="divider"></div>
<a href="job_details.php?id=<?= $job['job_id'] ?>" class="btn btn-primary btn-block">
View Details
</a>
</div>
</div>
</div>
</div>
<?php
}
} else {
echo "<div class='lg:col-span-3 text-center p-8 bg-base-100 rounded-lg shadow-xl'>";
echo "<h3 class='text-xl font-bold mb-2'>No Jobs Found</h3>";
echo "<p>Try adjusting your search criteria or removing some filters.</p>";
echo "</div>";
}
?>
</div>
</main>
<?php include 'footer.php'; ?>
</body>
</html>
<?php
} catch (Exception $e) {
echo "<div class='container mx-auto px-4 py-8'>";
echo "<div class='alert alert-error'>";
echo "Error details: " . htmlspecialchars($e->getMessage());
echo "</div>";
echo "</div>";
}
// Close database connections
if (isset($stmt)) {
$stmt->close();
}
if (isset($conn)) {
$conn->close();
}
?>