Re: Zip Codes

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thursday 04 November 2004 16:59, bb9876 wrote:
> Is there any way to use PHP to determine the zip code someone is visiting
> from, assuming they are all from the US?

Something like this should work:

---------- start
<form action="<?php echo $_SERVER['PHP_SELF'];  ?>" method="POST">
Please input zipcode <input type="text" name="zipcode" value="">
<input type="submit" name="submit" value="Enter">
</form>

<?php
  if (!empty($_POST['zipcode'])) {
    echo "Whoa! your zipcode is {$_POST['zipcode']}";
  }
?>
---------- end

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
------------------------------------------
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
------------------------------------------
/*
Thinking you know something is a sure way to blind yourself.
  -- Frank Herbert, "Chapterhouse: Dune"
*/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux