PHP code example of hn / video
1. Go to this page and download the library: Download hn/video library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hn / video example snippets
apacheconf
# In php.ini
upload_max_filesize = 300M
post_max_size = 300M
# Or in .htaccess (with mod_php only)
<IfModule mod_php.c>
php_value upload_max_filesize 300M
php_value post_max_size 300M
</IfModule>