搜索中的其他结果/注释

时间:2013-03-30 00:49:02

标签: php database search

想知道是否可能,当您从网站搜索页面和数据列表时,如果您不仅可以在最相关的位置排序,而且还要显示值。

离。您搜索之前输入的有关您销售的柠檬水的数据。你跟踪多个因素,如“一天中的时间,温度,月份等”你想知道一周之后你会卖出多少,所以你要把价值打到“一天中的时间,温度,月份等”。

理论上,我希望能够根据相关性调出所有输入的数据,并根据以前的记录显示您将要销售的内容的估计值。有任何想法吗?

由于

1 个答案:

答案 0 :(得分:0)

这需要一个算法。我不会写所有的代码,但我不介意给一些指导:)。 获取数据的html与设置数据的html相同,除了它将调用单独的.php脚本。

以下示例可用于指导。它仅使用温度来计算预测销售额:

//get todays temperature from form, and query database for all temperatures
$todaysTemp = $_POST['temperature'];
$tempRange = 20;    //each temperature in the table must be within this range of todaysTemp to be included in calculation
$result = $connection->query("SELECT temperature, sales FROM myTable");

//calculate average temperature by adding this temp to total, then diving by total rows included
$temp_sales_array = array();
foreach($result as $row){
    if( abs($todaysTemp - $row['temperature']) < tempRange){
        $temp_sales_array[$row['temperature']] = $row['sales'];
    }
}

//calculate predicted sales, by getting array value thats closest to todays temperature
$closest=key($temp_sales_array[0]);
foreach($temp_sales_array as $row){
    if( abs($todaysTemp - key($row)) < closest ){
        closest = key($row);
        $predicted_sales = $row;
    }
}

//show predicted sales
echo $predicted_sales;