<html>
<head>
<title>Print all PHP variables</title>
</head>
<body bgcolor=lightyellow>
<h1 align=center>Testing http_get( ) </h1>
<br><br>
<?php
//$req_opt = ("timeout"=>3); //array of request options
$response = http_get("https://www.google.com/", $req_opt, $info);
print_r($info);
?>
<?php include "../include.php"; ?> <!-- hyperlink to see the code -->
</body>
</html>