我有我的代碼在php中的錯誤問題。任何人都可以幫助我糾正它!PHP語法錯誤,意外的'<'
<?php $query_tbl = "SELECT transaksi.id_transaksi, pelanggan.nama FROM transaksi, pelanggan ".
"WHERE transaksi.id_pelanggan = pelanggan.id_pelanggan ORDER BY id_transaksi";
$list_tbl = mysqli_query($dbc, $query_tbl)
or die('Error select table');
while($row = mysqli_fetch_array($list_tbl))
{
echo '<tr>';
echo '<td>' . $row['id_transaksi'] . '</td>';
echo '<td>' . $row['nama'] . '</td>';
<form method="post" action="pengiriman-input.php">
<input type="hidden" name="id" value="<?php echo $row['id_transaksi']; ?>" />
<input type="submit" value="Kirim" />
</form>
echo '</tr>';
};?>
在Chrome中我得到這個通知符:
Parse error: syntax error, unexpected '<' in C:\xampp\htdocs\delivery\pengiriman.php on line 33.
我不知道什麼是錯的,因爲我是新用PHP。
而且順便說一句管線33
<form method="post" action="pengiriman-input.php">
如果您向我們展示第33行的源代碼(您在點擊錯誤時看到的那個代碼) – Peanut