<?php
$apiKey = 'YOUR_API_KEY';
$city = 'YOUR_CITY';

$url = "http://api.openweathermap.org/data/2.5/weather?q=$city&appid=$apiKey";

$response = file_get_contents($url);
$data = json_decode($response);

$temperature = $data->main->temp;
$weatherDescription = $data->weather[0]->description;

echo "Temperature: " . $temperature . " K<br>";
echo "Weather Description: " . $weatherDescription;
?>