function _weather_es_data_save in Weather_es 6.3
Same name and namespace in other branches
- 7 weather_es.module \_weather_es_data_save()
Save the AEMET data for a city
@author jmsirvent
2 calls to _weather_es_data_save()
- block_weather_es_contents in ./
weather_es.module - Show the weather_es contents
- weather_es_form_submit in ./
weather_es.module - @author jmsirvent
File
- ./
weather_es.module, line 819
Code
function _weather_es_data_save($cit_cod, $cit_nam, $aemet) {
db_query("INSERT INTO {weather_es_data} (cit_cod, cit_nam, nex_upd, dat_dat)\n VALUES (%d, '%s', %d, '%s')", $cit_cod, $cit_nam, time() + 4 * 3600, $aemet);
}