Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
$ftp_id=ftp_connect("host");
$ftp_login=ftp_login($ftp_id, "name", "pass");
$remote_adress = '/html/gallerie';
if (!is_dir($neu_titel))
{
ftp_chdir($ftp_id, $remote_adress);
ftp_mkdir($ftp_id, $neu_titel);
ftp_mkdir($ftp_id, $neu_titel."/thumbnails");
}
$upload= ftp_put($ftp_id, $remote_adress.$_FILES["file"]["name"], $_FILES["file"]["tmp_name"], FTP_BINARY);
ftp_site($ftp_id, " CHMOD 0777 ".$remote_adress.$neu_titel);
$ftp=ftp_connect($ftphostname);
ftp_login($ftp,$ftpusername,$ftppassword);
ftp_chdir($ftp,"html");
ftp_put($ftp,"images/".$gallery['gallery']."/".$filename,$tmpname,FTP_BINARY);
ftp_close($ftp);
$ftp=new ftpconnection($ftphostname,$ftpusername,$ftppassword);
$ftp->chdir("html");
$ftp->put($tmpname,"images/".$gallery['gallery']."/".$filename); //verglichen mit ftp_put() sind hier die Dateinamen vertauscht
//$ftp->disconnect(); //nur PHP4
unset($ftp);