2017-09-01 12 views
0

ImはPHPでコーディングし、以下の例のEbay Search Boxで作業しています。今、Imは検索ボックスは、ユーザーからの問い合わせを収集し、PHPの変数$クエリに渡すようにしようeBayの検索ボックスphpを使用

http://developer.ebay.com/devzone/finding/howto/gettingstarted_php_nv_xml/gettingstarted_php_nv_xml.html

検索ボックス:なるほど変更後

$query = 'harry potter'; 

$query = ($_POST['vin']); 

へ:

<input type="text" value="" name="vin" /> 

私はラインを変更しました 結果がありません。私は何が欠けていますか?

+0

入力要素が含まれているフォームを表示します –

答えて

0

検索ボックスの要素名はvinです。

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> 
関連する問題