リスト アイテムの役職のように、PHP を使用して mySQL からデータを取得し、表示することができます。クリックすると、ジョブのスキルと説明をポップアップで表示したいと考えています。各役職には固有のスキルと説明があります。私を助けてください...
サンプルコード:
<?php
//including the database connection file
include_once("includes/db.php");
// Get all the data from the table
$result = mysql_query("SELECT * FROM job_posting ORDER BY id DESC") or die(mysql_error());
echo "<ul>";
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array($result)) {
// Print out the contents of each row into a table
echo "<li> <a href='post_resume.php?id=".base64_encode($row['id'])."'>" . $row['title'] . "</a></li>";
}
echo "<ul>";
?>