我需要你的帮助。 我在循环时使用PHP表 我需要有关如何从表中的选定行获取id然后将其发送到另一页的帮助。我需要这样做,因为表格不会查看详细信息,因此我需要该ID才能查看完整表格中的详细信息或查询。
以下是我的代码
<?php
include('config.php');
session_start();
$table = "select * from rekuest";
$select = mysql_query($table);
$user = $_SESSION['username'];
?>
<head>
<title>Home</title>
<link href="css/960.css" rel="stylesheet" media="screen" />
<link href="css/defaultTheme.css" rel="stylesheet" media="screen" />
<link href="css/myTheme.css" rel="stylesheet" media="screen" />
<script src="js/jquery-1.6.1.js"></script>
<script src="js/jquery.fixedheadertable.min.js"></script>
<script src="js/demo.js"></script>
<style type="text/css" media="screen">
#tombol {
display: block;
width: 90px;
height: 30px;
background: url(img/tombol_normal2.png) no-repeat top;
}
#tombol:active {
background: url(img/tombol_pressed.png) no-repeat bottom;
}
</style>
</head>
<body>
<h1 align="center">List All Of Request</h1>
<h2 align="center">Welcome, <?php echo $_SESSION['username']; ?></h2>
<form>
<input type="button" name="new" value="New Request" align="right"
onClick="window.location='form.php'"/>
<input type="button" onClick="window.location = 'logout.php?exit=yes'" class="myButton" value="Logout"/>
</form>
<div id="divider">
</div>
<table width="900" align="center" cellpadding="0" cellspacing="0" class="myTable04">
<thead>
<tr>
<th>No Reff</th>
<th>Subjek Request</th>
<th width="20px">Permintaan</th>
<th>Waktu</th>
<th>Jenis Request</th>
<th>Customer</th>
<th>Sifat Requirement</th>
<th>Pelaksana</th>
<th>Status</th>
<th>Respon</th>
<th>Rekomen</th>
<th>Nama File</th>
<th>Attachment</th>
<th>Detail</th>
</tr>
</thead>
<tbody>
<?php while($row = mysql_fetch_array($select)) { ?>
<tr>
<td><?php echo $row['id_rekuest']; ?></td>
<td><?php echo $row['subjek']; ?></td>
<td><?php echo $row['permintaan']; ?></td>
<td><?php echo $row['waktu']; ?></td>
<td><?php echo $row['jenis']; ?></td>
<td><?php echo $row['customer']; ?></td>
<td><?php echo $row['sifat']; ?></td>
<td><?php echo $row['pelaksana']; ?></td>
<td><?php echo $row['status']; ?></td>
<td><?php ?></td>
<td><?php ?></td>
<td><?php ?></td>
<td><?php ?></td>
<td><a id="tombol" style="cursor:pointer" onClick="window.location='detail.php'"></a></td>
</tr>
<?php } ?>
</tbody>
</table>
答案 0 :(得分:2)
而不是
<td><a id="tombol" style="cursor:pointer" onClick="window.location='detail.php'"></a></td>
我会把
<td><a id="tombol" href="detail.php?id=<?php echo $row['id_rekuest']; ?>">Details</a></td>
然后,在detail.php中,您可以从$_GET['id']
获取ID。
答案 1 :(得分:0)
我不是100%知道你在问什么,但我认为你想要的是将id传递给详细页面。你可以通过以下方式获得这个:
<td>
<a id="tombol" style="cursor:pointer" href="detail.php?id=<?php echo $row['id_rekuest']; ?>"></a>
</td>
然后使用$ _GET ['id'](请清理!)根据该ID查询数据库中的任何内容