how to display bans on website
#8

Quote:
Originally Posted by andersffs
Well it's easy made with PHP.. I'll see what I can do

edit:
Here you got!
Change the "samp.ban" to the exact source.
Код:
<?php
$file = "samp.ban";
$handle = fopen($file, 'r');
$data = fread($handle, filesize($file));
fclose($handle);
echo nl2br($data);
?>
You can also do this if you're using Godfather servermode. But then you have to link to the "ban.log" file whos in the dir "scriptfiles".
wow nice script, if you dont mind i added onto it alittle bit for my usage.
just so that it retrieves the ban list every time you run the script

Код:
<?php
$conn = ftp_connect("your servers ftp address here") or die("Could not connect");
ftp_login($conn,"user ftp login"," user password login");
ftp_get($conn,"samp.ban","directory/file where samp.ban is located on your ftp",FTP_ASCII);
$file = "samp.ban";
$handle = fopen($file, 'r');
$data = fread($handle, filesize($file));
fclose($handle);
ftp_close($conn);
echo nl2br($data);
?>
just put in what you need and youve got a banlist on your website ^^
Reply


Messages In This Thread
how to display bans on website - by CJ101 - 28.06.2009, 09:16
Re: how to display bans on website - by refshal - 28.06.2009, 18:14
Re: how to display bans on website - by Danny_Costelo - 28.06.2009, 18:38
Re: how to display bans on website - by andersffs - 29.06.2009, 11:41
Re: how to display bans on website - by godforbid - 29.06.2009, 15:23
Re: how to display bans on website - by Fish - 29.06.2009, 19:30
Re: how to display bans on website - by andersffs - 29.06.2009, 19:52
Re: how to display bans on website - by iLinx - 01.07.2009, 14:27
Re: how to display bans on website - by andersffs - 01.07.2009, 15:26

Forum Jump:


Users browsing this thread: 1 Guest(s)