I am retrieving Google Weather XML as such:
<?php
$xml = simplexml_load_file('http://www.google.com/ig/api?weather=LONDON&hl=en-GB');
?>
Is it possible to set the city from an input? As a search box. So you can search which city you are pulling plus the language. I don't mind you search the language as en-GB, US and such instead of english, french etc because I will be adding a selectbox later on.
For example: http://jsfiddle.net/7WFGz/
Thanks alot