background image

  
  </td>
  
  </tr>
  
  </table>
  
  <scripttype="text/javascript">
  
  window.onload=function(){
  
  document.getElementById('targeturl').focus();
  
  };
  
  </script>
  
  PHP 代理页面:
  
  以下为引用的内容:
  
  <?php
  
  //使用 Snoopy 的抓页功能
  
  include"Snoopy.class.php";
  
  //目标 URL
  
  $url=$_REQUEST['targeturl'];
  
  //将所有传递过来的参数列出来
  
  $par=array();
  
  $GetPost=array_merge($_POST,$_GET);
  
  foreach($GetPostAs$Key=>$Value){
  
  if($Key!='targeturl'){
  
  $Value=str_replace("%25","%",$Value);
  
  array_push($par,($Key."=".$Value));