link01.php一个简单的表单页面<form action="link02.php" method="post">
<table align="center">
<h3 align="center">友情链接检测工具</h3>
<tr>
     <td colspan="4">HTTP://<input type="text" name="txtSiteUrl" id="txtSiteUrl" /></td>
        <td colspan="4"><input type="submit" value="查询" name="btnQuiry" id="btnQuiry" /></td>
    </tr>
    
</table>
</form>link02.php处理页面<?php
$txtSiteUrl=$_POST['txtSiteUrl'];
$url="http://www.addpv.com/seo/webreport.aspx?url=".$txtSiteUrl;
$content=file_get_contents($url); 
$preg='/<table[^>]+>(.*)<\/table>/isU';
preg_match_all($preg,$content,$table);
$html=implode('',$table[1]);?>
<table align="center" cellpadding="3" border="1" style="margin-left:auto; margin-right:auto;">
<?php
print_r($html);
?>
</table>
结果输出的是一个表格形式,但是table里边的内容只能显示静态文字,动态的数据结果没有,请问大侠们有什么好的办法,把想要的部分网页内容抓取出来,小弟感谢