<!DOCTYPE html>
<?php
$request = 'http://api.wolframalpha.com/v2/query?appid=YKAERX-QJJAE7L2G6&input=albert%20einstein&format=html';
$curl = curl_init();
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_URL, $request);
$response = curl_exec($curl);
curl_close($curl);
$blank = '';
$remove = ']]>';
$display = preg_replace($remove, $blank, $response);
?>
<html>
<head>
<style>
div.ex
{
width:500px;
padding:10px;
border:5px solid gray;
margin:0px;
}
</style>
</head>
<body>
<div class="ex">
<?php
echo $display
?>
</div>
</body>
</html>