我只是无法绕过这个简单的要求。我是 PHP 新手,需要帮助。
我需要在搜索框中捕获值,然后在点击提交时将其传递到在新选项卡中打开的 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>