我无法绕过这个简单的要求。我是PHP新手,需要帮助。
我需要在搜索框中捕获该值,然后将其传递到URL中,该URL在提交时点击新选项卡中打开。
我在这里想念的是什么..似乎我错过了很多工作......
<?php
if (isset($_POST["submit"])){
$example = $_post['searchon'];
echo '<a target = '_blank' href=http://www.amazon.in/s/ref=nb_sb_noss_1?url=search-alias%3Daps&field-keywords=.$example.&tag=orientmarketi-21></a>';
}
?>
<form action="index.php" method="post">
<input type="search" name="searchon" id="searchon" />
<input type="submit" name ="submit" />
</form>
答案 0 :(得分:0)
尝试使用此代码代替您的代码:
<form action="http://www.amazon.in/s/ref=nb_sb_noss_1" method="get" target="_blank">
<input type="hidden" name="url" value="search-alias=aps" />
<input type="hidden" name="tag" value="orientmarketi-21" />
<input type="text" name="field-keywords"/>
<input type="submit" />
</form>