/* proxy.php */
<?php echo file_get_contents($_GET['url']);?>
then, assuming that you place proxy.php in the same directory of the html page:
$("#content").load('proxy.php?url=http://example.com');
/* proxy.php */
<?php echo file_get_contents($_GET['url']);?>
then, assuming that you place proxy.php in the same directory of the html page:
$("#content").load('proxy.php?url=http://example.com');