i have the following php code:
<?php
require_once("support.php");
$query = $_POST["search"];
$google = "http://www.google.com/search?q=" . $query;
$bing = "http://www.bing.com/search?q=" . $query;
$yahoo ="http://search.yahoo.com/search?p=" . $query;
$ask = "http://www.ask.com/web?q=" . $query;
$body= "<html><head>";
$body .= "<script src=\"scripts.js\"></script>";
$body .= "</head>";
$body .= "<frameset rows=\"50%,50%\" cols=\"50%,50%\" >";
$body .= "<frame src=\"$google\" />";
$body .= "<frame src=\"$bing\" />";
$body .= "<frame src=\"$yahoo\" />";
$body .= "<frame src=\"$ask\" />";
$body .= "</frameset>";
$body .= "</html>";
echo $body;
?>
which produces the following html:
<html>
<head>
<script src="scripts.js"></script>
</head>
<frameset rows="50%,50%" cols="50%,50%" >
<frame src="http://www.google.com/search?q=adf" />
<frame src="http://www.bing.com/search?q=adf" />
<frame src="http://search.yahoo.com/search?p=adf" />
<frame src="http://www.ask.com/web?q=adf" />
</frameset>
</html>
when i open this in google chrome, i get 4 frames with the expected content, from the above url's. but in the first frame, who's src is from google, i get nothing; just a blank frame. any idea what is going on here?
Thanks