27.10.2010, 22:11
lo intente por ftp pero no me coje esta linea:
Siempre me dice failed!
Y por mysql no se muy bien como hacerlo :/
Код:
<?php //GetBans //October 11th/2009 //Retrieves the samp banlist from your server and echos it back in a neat fashion. $ftp_host = "***"; //put the ip / hostname to your ftp here $ftp_user = "***"; //put your login here $ftp_pass = "***"; //put your password here $banfile = "samp.ban"; $con = ftp_connect($ftp_host) or die("Couldnt connect to your ftp (check your settings!"); ftp_login($con, $ftp_user, $ftp_pass); ftp_get($con, "ban.txt", $banfile, FTP_ASCII) or die("failed"); ftp_close($con); $file = fopen("ban.txt", "r"); $bans = fread($file, filesize("ban.txt")); fclose($file); echo nl2br($bans); ?>
Код:
ftp_get($con, "ban.txt", $banfile, FTP_ASCII) or die("failed");
Y por mysql no se muy bien como hacerlo :/