2

寻找一种解决方案来搜索邮政编码列表。我有一个包含我们服务的一堆邮政编码的文本文件。希望在网站上有一个表格,要求用户输入他们的邮政编码,以查看我们是否为该地区提供服务。如果是,则显示一条消息说我们这样做,如果不是,则显示我们不这样做。认为 PHP 将是解决我的问题的最佳解决方案,但在这方面我完全是菜鸟。

我已经设置了表单,只是不确定如何搜索文本文件并在另一个 div 中显示答案?

<form action="zipcode.php" method="post">
<input type="text" name="search" />
<input type="submit" />
</form>

更新:最好是 AJAX 解决方案!

4

2 回答 2

1

看到你的编辑...下面是 PHP。

我会做类似的事情

$lines = file("/path/to/file.txt", FILE_IGNORE_NEW_LINES); //reads all values into array
if(in_array($_POST['search'], $lines)){ //checks if ZIP is in array
    echo "found zip code";
}else{
    echo "zip code does not exist";
}

只要没有大量的邮政编码......这应该没问题。另外,你的文件格式是什么?这可能行不通。

于 2013-08-28T16:24:42.597 回答
1

AJAX方法(已测试)


PHP 处理程序

(find_in_file_ajax.php)

<?php
$search = $_POST['search'];
$text = file_get_contents('zipcodes.txt');
$lines = explode("\n", $text);
if(in_array($_POST['search'], $lines)){ //checks if ZIP is in array
    echo "ZIP code found";
}else{
    echo "ZIP code does not exist";
}
?>

HTML 表单

<!DOCTYPE html>
<html>
<head>

<style>
.update {

font-family:Georgia;
color:#0000FF;

}
</style>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>

<script type="text/javascript">

$(function() {

    $(".search_button").click(function() {
        // getting the value that user typed
        var searchString = $("#search_box").val();
        // forming the queryString
        var data = 'search='+ searchString;

        // if searchString is not empty
        if(searchString) {
            // ajax call
            $.ajax({
                type: "POST",
                url: "find_in_file_ajax.php",
                data: data,
                beforeSend: function(html) { // this happens before actual call
                    $("#results").html(''); 
                    $("#searchresults").show();
                    $(".word").html(searchString);
               },
               success: function(html){ // this happens after we get results
                    $("#results").show();
                    $("#results").append(html);
              }
            });    
        }
        return false;
    });
});
</script>

</head>

<body>
<div id="container">
<div>
<form method="post" action="">
    <input type="text" name="search" id="search_box" class='search_box'/>
    <input type="submit" value="Search" class="search_button" /><br />
</form>
</div>      
<div>

<div id="searchresults">Search results: <span id="results" class="update"></span>
</div>

</div>
</div>

</body>
</html>

原始答案

经过测试

首先需要通过 访问该文件file_get_contents,然后分解每个条目并提取有问题的邮政编码搜索。

假设 zipcodes.txt 文件格式如下:

43505
43517
43518
43526
43543

注意:如果查询 43505,就会找到。不像 4350 或 3505 不会被找到,所以它是一个唯一的查询。

考虑以下:

<?php
$search = $_POST['search'];
$text = file_get_contents('zipcodes.txt');
$lines = explode("\n", $text);
if(in_array($_POST['search'], $lines)){ //checks if ZIP is in array
    echo "ZIP code found.";
}else{
    echo "ZIP code does not exist";
}
?>
于 2013-08-28T17:12:38.823 回答