I am using a code that changes my wordpress website’s background according to the Yahoo API URL I inserted. Is there anyway to make it automatically show the Visitors weather without any databases? I have though of using Google’s API but I am a novice in programming and dont know how to implement it into my website. Please help!
The code can be viewed here: http://css-tricks.com/using-weather-data-to-change-your-websites-apperance-through-php-and-css/
Please be thorough because I am new to PHP
Thanks!
This will get a user’s zip code from their IP address using the open-source IP2Coordinates service from the Data Science Toolkit.
There are more accurate Geo-location APIs out there, but this one is absolutely free and dead simple to use. If I were developing this on a production site, I’d use HTML5 Geolocation as my primary method with a fallback to a better IP geolocator, like Max Mind.
Note that this will only work for US users of your site. You should probably pass more detailed data to one of the other Yahoo place APIs to get one of their WOEIDs to use (or pick a different weather API).
Here is the code for you. Put this right after the
<?phptag in your sample code. Once you’re sure it’s working, comment out all the lines that begin withprint.Now change the line in the sample code that begins with
$data =to this: