我有一個爲殘疾學生建立的網站,用於搜索YouTube,然後以無障礙格式顯示結果。顯示最受歡迎的表單提交?
我想顯示本網站上排名前5的最受歡迎的檢索詞。
搜索條件是使用文本輸入表單提交的 - 有沒有辦法將searchterms提交給mysql,然後顯示最流行的?
還是更好的方法?
形式提交代碼:
<fieldset class="search">
<form method="get" name="search" action="<?php echo
htmlentities($_SERVER['PHP_SELF']); ?>">
<input type="text" label="type here" class="box" name="v" placeholder="type here..."/>
<input type="submit" name="submit" value="Search"/>
</form>
</fieldset>
非常感謝,邁克