[PHP] Zip Code Locator?

2001-07-23 Thread Vincent P. Cocciolone
Hi, Does anyone know where can I find documentation or example scripts for a zip code locator. I'm looking for something that will list other zip codes within a number of miles radius of the zip specified. Thanks! Vince -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mai

[PHP] mySQL - Swap data in a field between two rows

2001-03-17 Thread Vincent P. Cocciolone
There must be an easy way, but it escapes me. How can I switch the data in a feild of one row with the data in that field of another row? example: row: id=1 fname=John lname=Doe row: id=2 fname=Mary lname=Poppins to: row: id=2 fname=John lname=Doe row: id=1 fname=Mary lname=Poppins Thanks...