我有两个网页。
索引.php
这包含一个表格
<form id="searchForm" class="" action="search.php" method="get" style="position:absolute; top:150pt; left:10pt; font-size:17pt;">
<label for="">Postcode</label>
<input type="text" id="postcode" name="postcode" value="" placeholder="AB12 3CD" oninput="checkPostcode()">
<!-- function isValidPostcode(p) {
var postcodeRegEx = /[A-Z]{1,2}[0-9]{1,2} ?[0-9][A-Z]{2}/i;
return postcodeRegEx.test(p);
} -->
<br>
<label for="">Type of Course</label>
<select class="" name="coursetype">
<option value="" disabled selected></option>
<option value="online">Online</option>
<option value="">In Person</option>
</select>
<br>
<input type="submit" value="Search">
</form>
当表单提交 search.php 中的操作时
搜索.php
这显示了与上一页输入的数据相同的表格
<?PHP $postcode = $_GET['postcode'];?>
<form class="" action="search.php" method="get">
Postcode <input type="text" name="postcode" value="
<?php
$postcode = str_replace('%20', ' ', $postcode);
$postcode = str_replace('-', ' ', $postcode);
$postcode = str_replace('%09', '', $postcode); // This line was added to try to remove
the tabs
echo $postcode;
?>
">
Tags
<select id="tagsInput" class="js-example-basic-hide-search-multi" name="specialities[]"
multiple="multiple" onkeyup="filterTags()">
<option value="AL">Lorem</option>
<option value="WY">ipsum</option>
</select>
<script>
$(document).ready(function() {
$('.js-example-basic-hide-search-multi').select2({language: "en"});
})
</script>
</script>
<input type="submit" value="Submit">
</form>
但是,当输入显示在 search.php 中时,输入的两侧都有两个选项卡。
我该如何摆脱这个?
莫回无
白衣非少年
浮云间