﻿﻿??????????????
﻿﻿??????????????
<?php

include 'admin/connection.php';

$id = $_POST['id'];

$sql = "SELECT * FROM job_posts WHERE id='$id'";
$result = $conn->query($sql);

$row = $result->fetch_assoc();

?>

<div class="job-popup-card">

<h3><?php echo $row['job_title']; ?></h3>

<p><strong>Company:</strong> <?php echo $row['company']; ?></p>

<p><strong>Experience:</strong> <?php echo $row['experience']; ?></p>

<p><strong>Location:</strong> <?php echo $row['location']; ?></p>

<p><strong>Salary:</strong> ₹<?php echo $row['salary']; ?></p>

<hr>

<p><strong>Job Responsibilities</strong> <?php echo $row['responsibility']; ?></p>
<p><strong>Required Skills</strong><?php echo $row['skills']; ?></p>
	

</div>