Does anyone know which would be more efficient to use?
ORPHP Code:ob_start();
include("path/to.php");
$data = ob_get_contents();
Thanks for answering stupid questionsPHP Code:$fp = fopen("path/to.php","r")
while(! feof($fp)){
$data.=fgets($fp,1024);
}
![]()


Reply With Quote
CornedBee