Php - FTP sort files by lastmodified date May 22, 2014 use ftp_nlist($ftpconnection, '-t .'); Read more
Php : Echo German characters (Umlaute) from mysql May 13, 2014 Procedural style $link = mysqli_connect('localhost', 'my_user', 'my_password', 'test'); mysqli_set_charset($link, "utf8"); Object oriented style $mysqli = new mysqli("localhost", "my_user", "my_password", "test"); $mysqli->set_charset("utf8"); Read more
scp copy multiple files from remote server May 07, 2014 scp -r username@remotehost:/directory/\{file1,file2,file3\} destination_folder eg: scp -r root@example.com:/tmp/\{file1.txt,file2.txt,file3.txt\} /tmp Read more