我的表单中的数据不会发送到search.php
.
<form class="form-search" action="search.php" method="get">
<input type="text">
<button type="submit">Search</button>
</form>
// search.php
<h2>Searched <?php print $_GET['username']; ?>; Returned 5 Results from Query.</h2>
注意:未定义索引:第 40 行 C:\xampp\htdocs\Web\Statistics\search.php 中的用户名
因此,数据未设置在$_GET
.