我正在研究搜索功能,因此我需要输入值来生成最终网址(显示结果)
假设用户在此处输入他要查找的内容:
Name: <input type="text" id="myText">
现在我需要生成一个超链接
http://constant/constant?query=NAME&someotherconstantthings
这里,NAME需要从输入内容中替换
答案 0 :(得分:0)
尝试使用PHP,您可以向表单元素添加一个操作,将输入的信息发布到PHP文件,然后生成您的超链接。
<form action="phpfilename.php" method="post">
Name: <input type="text" id="myText" name="myText">
<input type="submit" value="Search">
</form>
<?php
$name = $_POST['myText'];
$hyperlink = 'http://constant/constant?query='.$name;
?>
答案 1 :(得分:0)
你需要这样的东西:
<form action="URL" method="get">
Enter your name here: <input type="text" name="query" value="">
<input type="submit" value="Search">
</form>
您需要将关键字URL替换为执行搜索的页面的路径。如果要将表单提交到同一页面,则可以删除关键字URL。