如何使用PHP在html页面中的选项卡之间传递值

时间:2015-11-13 06:38:22

标签: php html css tabs

如何使用php

在html中的选项卡之间传递值/变量

我有三个从数据库中提取的标签。每个标签都有单独的ID。

<div class="tab-holder">
    <div class="tab">
        <table class="table table-striped">
            <thead>
                <tr>
                    <th width="34%">Job Title</th>
                    <th width="15%">Experience</th>
                    <th width="29%">Location</th>
                    <th width="8%">Salary</th>
                    <th width="7%"></th>
                </tr>
            </thead>
            <tbody>
            <?php 
            while($row = mysql_fetch_array($result)) {
                $cat = $row['cat'];
                if ($cat =='6') {
                    $jobtitle = $row['vVacjobtitle'];
            ?>
                <tr>
                    <td>
                        <span class="pill medium green"><?php echo $row['vVacjobtitle'] ?></span>

                    </td>
                    <td><?php echo $row['experience'] ?></td>
                    <td><?php echo $row['vVacLocation'] ?></td>
                    <td><?php echo $row['salary'] ?></td>
                    <td>
                        <a href="post_resume.php?c=<?php echo $jobtitle; ?>">Apply</a>
                    </td>
                </tr>
            <?php 
                }
           } ?>
           </tbody>
        </table>
    </div>

突片

InsertEntry

单击选项卡

时如何获取ID

if($ cat == 6)

我想将id放在6

的位置

提前致谢.. :))

1 个答案:

答案 0 :(得分:1)

由于您将id的值作为GET参数传递,因此您可以在PHP代码中通过$_GET['id']访问它