如何使用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
单击选项卡
时如何获取IDif($ cat == 6)
我想将id放在6
的位置提前致谢.. :))
答案 0 :(得分:1)
由于您将id
的值作为GET参数传递,因此您可以在PHP代码中通过$_GET['id']
访问它