-2

リスト アイテムの役職のように、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>";

?>
4

1 に答える 1

0

参照: http://jqueryui.com/dialog/

li の中に div を入れます。

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" />
          <script src="http://code.jquery.com/jquery-1.8.3.js"></script>
          <script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>

      <script>
      $(function() {
        $( ".dialog" ).dialog({ autoOpen: false });
      });
      </script>
<body>



 <ul>   
  <li>   
    <div class="dialog" title="SOME TEXT">
      <p>

                     JOB SKILLS AND DESCRIPTION

       </p>
    </div>    </li>  </ul>  </body>
于 2013-02-13T07:05:00.327 に答える