2014-03-06 66 views

回答

1

您需要使用echo語句輸出它。

ob_start(); 
$pageident = $tempdbid; 
include 'newpagegenerator.php'; 
$page = ob_get_contents(); 
echo $page;//<----- echo here 
ob_end_clean();