我正在尝试为搜索按钮编写代码。但问题是我得到了错误:
我正在尝试将$ _POST转换为变量,以便检查输入是否已填充,如果未填充,则必须显示数据库中的所有数据。我是php的新手,之前从未编码过搜索。所以可能我做错了......但我认为这样做会有效。
下面你可以找到我的PHP代码:
<?php
ini_set('display_errors',1);
ini_set('display_startup_errors',1);
error_reporting(-1);
//include '../loginHandlerconnect.php';
include('php/loginHandlerconnect.php');
$db = loginHandlerconnect();
$bedrijfzoek = $db->quote($_POST['zoekBedrijf']); //line 12
$datumzoek = $db->quote($_POST['zoekDatum']); //line 13
if($bedrijfzoek == null && $datumzoek == null){
//code for showing the results
}
if($bedrijfzoek != null){
//code for showing the results
}
if($datumzoek != null){
//code for showing the results
}
if($bedrijfzoek != null && $datumzoek != null){
//code for showing the results
}
?>
我的HTML代码:
<form class="form-inline pull-right" role="form" method="POST" action="php/vacatureoverzichtphp.php">
<div class="form-group">
<label>Zoeken op: </label>
</div>
<div class="form-group">
<label class="sr-only" for="zoekenBedrijf">Bedrijfsnaam</label>
<input type="text" class="form-control" name="zoekBedrijf" id="zoekenBedrijf" value="<?php echo (isset($_POST['zoekBedrijf']) ? $_POST['zoekBedrijf'] : ""); ?>" placeholder="Bedrijfsnaam">
</div>
<div class="form-group">
<label>of</label>
</div>
<div class="form-group">
<label class="sr-only" for="zoekenDatum">Datum</label>
<input type="text" class="form-control" name="zoekDatum" id="zoekenDatum" value="<?php echo (isset($_POST['zoekDatum']) ? $_POST['zoekDatum'] : ""); ?>" placeholder="Datum">
</div>
<button type="submit" class="btn btn-default">zoeken</button>
</form>
<br><br><br>
<?php
include("php/vacatureoverzichtphp.php");
?>
有人可以帮助我,告诉我我做错了什么或者做了不同的事情吗?
答案 0 :(得分:0)
错误是您要求的是zoekBedrijf和zoekDatum,但字段名称是zoekenBedrijf和zoekenDatum。