我在 xhtml 文件中使用 php 脚本时遇到问题 从 W3C 检查验证时,它一直显示这个烦人的消息:
character "<" is the first character of a delimiter but occurred as data
这是我的代码
<tr>
<td scope="row"><?php echo $prod_id; ?></td>
<td><?php echo $prod_name; ?></td>
<td><?php echo $prod_date; ?></td>
<td><?php echo $prod_price; ?></td>
<td>
<form action="./prod_edit.php" method="get" >
<input type="hidden" name="query_access" value="1" />
<input type="hidden" name="product_id" value="<?php echo $prod_id; ?>" />
<input type="hidden" name="product_name" value="<?php echo $prod_name; ?>" />
<input type="hidden" name="product_date" value="<?php echo $prod_date; ?>" />
<input type="hidden" name="product_price" value="<?php echo $prod_price; ?>" />
<input type="submit" name="edit_button" value="Edit" />
</form>
</td>
<td>
<form action="./prod_delete.php" method="get">
<input type="hidden" name="query_access" value="1" />
<input type="hidden" name="product_id" value="<?php echo $prod_id; ?>" />
<input type="hidden" name="product_name" value="<?php echo $prod_name; ?>" />
<input type="hidden" name="product_date" value="<?php echo $prod_date; ?>" />
<input type="hidden" name="product_price" value="<?php echo $prod_price; ?>" />
<input type="submit" name="delete_button" value="Delete" />
</form>
</td>
</tr>
如何解决这个问题?