PHP

Easy way to upload with PHP and HTML

In this tutorial I will show you how to upload a file on your server using PHP script and HTML form. The basics HTML form In order to be able to upload a file, make sure your form has: – enctype=”multipart/form-data” – method=”post” <form enctype="multipart/form-data" action="upload.php" method="post"> Please choose a file: <input type="file" name="uploadedFile" /> ...

Problems using UTF-8 on your website?

Is your website in other language than english? Does your website contain characters that are not in the english alphabet? Then you really need your website to accept UTF-8 encoding. Of course, there are more standards (ISO 8859-1, ISO 8859-2 etc), but UTF-8 gets all the characters you need. UTF-8 and HTML – In order ...