PHP Reference PHP page problem
In a view.php page you need to loop through another serveinfo.php page, and to serveinfo.php the page loop get to pass different values,
1. The structure style of the calling page can appear using the include "serveinfo.php", but if
The page that is called when you pass the value serveinfo.php?serveip=192.168.185.88 to this page is not displayed properly.
2, the use of the IFRAME call to pass the value is not a problem, the value can also be successfully passed, but the serveinfo.php page has a div pop-up layer, so that the pop-up layer can only be in the IFRAME that small box can not achieve the desired effect.
People say this problem how to solve it???
------Solution--------------------
Use file_get_contents to get serveinfo.php page content, and also pass the parameters passed
$str =file_get_contents ("serveinfo.php?id= $id");
?>