JSON of weatherRequest is recovered in PHP
This commit is contained in:
8
php/getWeatherJson.php
Normal file
8
php/getWeatherJson.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
include 'keyVariable.php';
|
||||
ini_set("allow_url_fopen", 1);
|
||||
$cityName = $_COOKIE['city'];
|
||||
$url = 'https://api.openweathermap.org/data/2.5/weather?q='.$cityName.'&lang=fr&units=metric&appid='.$apiWeather;
|
||||
$json = file_get_contents($url);
|
||||
// $obj = json_decode($json);
|
||||
echo $json;
|
Reference in New Issue
Block a user