8 lines
254 B
PHP
8 lines
254 B
PHP
<?php
|
|
// Main configuration file
|
|
|
|
// The API key for OpenWeatherMap.
|
|
// You can get a free key from https://openweathermap.org/price.
|
|
// Please replace 'YOUR_OWM_API_KEY' with your actual key.
|
|
define('OWM_API_KEY', '1dfc5acd07d74b93a2ebdcccf3181cab');
|
|
?>
|