こんにちは私は時間とともに前のレコードを検索しようとしているテーブルを持っています私は検索オプション付きの選択ボックスを持っていますここにコードがあります
if (isset($_REQUEST['searchtype']) && isset($_REQUEST['period']))
{
if ($_REQUEST['searchtype'] == "All")
{
$period = "All";
}
elseif ($_REQUEST['searchtype'] == "Last24hours")
{
$period = date('Y-m-d H:i:s')-86400;
}
elseif ($_REQUEST['searchtype'] == "Last10days")
{
$period = date('Y-m-d H:i:s')-864000;
}
elseif ($_REQUEST['searchtype'] == "LastHour")
{
$period = date('Y-m-d H:i:s')-3600;
}
elseif ($_REQUEST['searchtype'] == "Lastweek")
{
$period = date('Y-m-d H:i:s')-604800;
}
elseif ($_REQUEST['searchtype'] == "LastMonth")
{
$period = date('Y-m-d H:i:s')-2592000;
}
else
{
$period = $_REQUEST['searchtype'];
}
どのように私はこれをしますか...