13.07.2014, 15:51
change C:\samp03z_svr_R1_win32 to your path
PHP код:
<?php
function getcontent($path)
{
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
return file("samp.ban", true);
}
$lines = getcontent("C:\samp03z_svr_R1_win32");
foreach($lines as $line ){
echo $line."<br/>";
}
?>