I mam pytanie jak każdą odczytaną linijkę z pliku 'sampban' dać w TABELI / RAMCE?

$ftp_host = "xxx"; //put the ip / hostname to your ftp here $ftp_user = "xxx"; //put your login here $ftp_pass = "xxx"; //put your password here $banfile = "samp.ban"; ftp_login($con, $ftp_user, $ftp_pass); ftp_get($con, "sampban.txt", $banfile, FTP_ASCII); ftp_close($con);