PHP
Parse PHP within HTML file
To make the server parse php within an html file, add this to the .htaccess file AddType application/x-httpd-php .php .htm .html or AddType application/x-httpd-php5 .html Check with your host for correct format.
Read MoreRemove line breaks and returns (nr) from string
$newstring = trim( preg_replace( ‘/s+/’, ‘ ‘, $string ) );
Read MoreMax Size of File Upload to Server
Show current settings: Change using php.ini in site root: ;increase max upload file size upload_max_filesize = 30M post_max_size = 30M
Read More