0
Я пытаюсь получить значения полей в php, но я не могу их получить. Пробовал и пост, и получить, никаких результатов. Я знаю, что это должно быть простое решение, но я просто не вижу ошибки. Любая помощь ценится. Спасибо!Получение входных значений datepicker в php
Вот это мой report.html:
<HTML>
<HEAD>
<meta charset="utf-8">
<link rel="stylesheet" href="css/style2.css">
<TITLE>SAE Report</TITLE>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$(function() {
$(".datepicker").datepicker({dateFormat:'yy-mm-dd'});
});
</script>
</HEAD>
<BODY>
<center>
<h1>SAE Report</h1>
</center>
<form action = "report.php" method = "get">
<label>Report Type</label>
<select id="report">
<option value="none"></option>
<option value="new">New SAEs Report</option>
<option value="cumulative">Cumulative SAE Report</option>
</select>
<label>Start Date</label><input type="text" class="datepicker" id='start' >
<label>End Date</label><input type="text" class="datepicker" id='end'>
<input type="submit" value="Submit" id ="submit">
</form>
</BODY>
Вот это мой report.php:
<?php
$report=$_GET['report'];
if ($report=="new"){
$start=$_GET['start'];
$end=$_GET['end'];
echo 'Start date is:'.$start.' and end date is: '.$end;
}
else if ($report=="cumulative"){
echo "print all SAEs";
}
?>
Это работает !! Благодаря!! –