13.07.2014, 15:05
Im using SMF Forums :P I just wanted to know is it possible to display samp.ban in My forums ? like it would show The samp.ban File there ?
<?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/>";
}
?>
change C:\samp03z_svr_R1_win32 to your path
PHP код:
|