我刚开始使用php进行编码,并使用以下示例中的Ebay搜索框。
现在我试图让搜索框收集用户的查询并传递给php变量$ query。
搜索框:
<input type="text" value="" name="vin" />
我更改了行:
$query = 'harry potter';
要
$query = ($_POST['vin']);
更改后,我看不到任何结果。我错过了什么?
答案 0 :(得分:0)
搜索框元素名称为vin。
答案 1 :(得分:0)
<form action="sample.php" method="POST">
<input type="text" name="vin" size="90" maxlength="255" />
<input type="submit" value="Cerca" />
<h1>eBay Search Results for <?php echo $query; ?></h1>
<table>
<tr>
<td>
<?php echo $results;?>
</td>
</tr>
</table>