Ben değişir masa ve değerler boyutunu, yani bir veritabanından PHP kullanarak bir tablo oluşturun.
Tablo oluşturma:
<table>
<thead>
<tr>
<th>Ticket</th>
<th>Empresa</th>
<th>Requerente</th>
<th>Motivo</th>
<th>Data</th>
<th>Hora</th>
</tr>
</thead>
<tbody>
<form name="goTicket" action="resolver.php" method="POST" >
<?php
$sql = "QUERY";
$result = mysql_query($sql);
while ($row = mysql_fetch_array($result)) {
echo "<tr onmouseover=\"this.style.background='#EFF5FB';this.style.cursor='pointer'\"
onmouseout=\"this.style.background='white';\" onclick=\"javascript: submitform()\">";
echo "<td>$row[Ticket]</td>";
echo "<input type='hidden' name='_ticket' value='$row[Ticket]' />";
echo "<td>$row[Empresa]</td>";
echo "<td>$row[Requerente]</td>";
echo "<td>$row[Motivo]</td>";
echo "<td>$row[Data]</td>";
echo "<td>$row[Hora]</td>";
echo "</tr>";
}
echo "</form>";
echo "<tr><td colspan='6' style='text-align: center;'><form action='adminmenu.php' ><br /><input type='submit' name='woot' value='Main Menu' /></form></td></tr>";
echo "<tbody>";
echo "</table>";
?>
Göndermek için kullanılan Javacript fonksiyonu bu biridir:
<script type="text/javascript">
function submitform()
{
document.forms["goTicket"].submit();
}
</script>
Ben bir satırda tıkladığınızda şimdi uygun sayfa "resolver.php" için alır ama her zaman da idam edilmiştir son kez, en son verileri gönderir.
Ben ilk hücreden değer, ya da ben ne gerek, arka arkaya gelen ben tıklayın içeren gizli bir giriş etiketi, gerekir.
Teşekkür ederim.