magames
New Member
- Messages
- 22
- Reaction score
- 0
- Points
- 0
i want to get the content of php file and not the script so i use this code:
by this way i will use high server resource usage,
So is there in other way to do this please :happysad:
PHP:
$from = "http://magames.pcriot.com/index.php"; //for exemple.
$handle = fopen($from, "rb");
$contents = '';
while (!feof($handle)) {
$contents .= fread($handle, 8192);
}
fclose($handle);
So is there in other way to do this please :happysad: