Я нашел этот отличный скрипт для загрузки и защиты файлов из каталога: http://www.gowondesigns.com/?page.getfile И я тоже видел этот код с сайта: // local file that should be send to the client $local_file = 'test-file.zip'; // filename that the user gets as default $download_file = 'your-download-name.zip'; // set the download rate limit (=> 20,5 kb/s) $download_rate […]
Это JS чтобы определить разрешение экрана на моей странице naming index.html и отправить его на php, чтобы значения можно было восстановить с помощью $_GET : – <script type="text/javascript"> width = screen.availwidth; height = screen.availheight; if (width > 0 && height >0) { window.location.href = "http://localhost/main.php?width=" + width + "&height=" + height; } else exit(); </script> […]