PHP 区号查询脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 区号查询脚本相关的知识,希望对你有一定的参考价值。

<?php
// ****************************************************** //
//  areacode.php -- Areacode Lookup Script                //
//                                                        //
//  Author: Brad Arnold -- http://arnoldb.com             //
//                                                        //
//  Licensed under Creative Commons - Share Alike         //
//  Licensed under GPL2                                   //
//                                                        //
//  This simple script will take an inputted area code    //
//  and return the state in which the area code belongs.  //
//                                                        //
//  This file must be named areacode.php and the file     //
//  areacodes.inc.php must reside in the same directory   //
//  unless changes to the code are made.                  //
// ****************************************************** //

if(!file_exists("areacodes.inc.php")) {
	die("ERROR! Areacode Data File is Missing or Corrupt!");
	}
else {
	require("areacodes.inc.php");
	}
?>

<html>
<head>
<title>Area Code Lookup Utility</title>
</head>

<body>

<!-- Begin Form -->
<form action="areacode.php" method="get" onreset="doReset();">
Area Code: <input type="text" name="fareacode" maxlength="3" size="2"/>
<input type="submit" />
<button onclick="form.reset();">Reset</button>
</form>

<!-- Begin code -->
<?php
// Put GET data into variable for ease of use
$input = $_GET["fareacode"];

// Check the variable, if empty show instructions, if in-use show results
if ($input) {
		// If input doesn't match an Area Code in the array return and error
		if(empty($areacode[$input])) {
			echo "Sorry," . " " . "<a style=font-weight:bold; />" . $input . "</a>" . " " . "is not a valid Area Code.";
			}
		else echo "Area code" . " " . "<a style=font-weight:bold; />" . $input . "</a>" . " " . "is found in the state of:" . " " . "<a style=font-weight:bold; />" . $areacode[$input] . "</a>";
	}
else echo "Enter a three (3) digit Area Code in the box above.";
?>

</body>

</html>

以上是关于PHP 区号查询脚本的主要内容,如果未能解决你的问题,请参考以下文章

从 phpmyadmin(好)和 PHP 脚本(坏)执行 sql 查询的不同结果

使用变量的查询在 PHPMyAdmin 中有效,但在 PHP 脚本中无效

你如何在 php 脚本中嵌入你的 sql 查询(编码风格)?

如何在执行php脚本后将mysql查询结果返回到html页面?

SQL错误仅发生在PHP脚本中[重复]

将字符串传递给 PHP 文件以查询 SELECT 语句