Creating a file upload system PHP / File Operations
In this tutorial I will show you how to create a simple file upload system with your user can upload a file from the local computer to your webserver. As you will see it is not so complicated to implement this very usefull script. However it can be dangerous if every visitor can upload files without any restriction. You can easy have a situation that there is no more free space on your server.
Secure File Upload with PHP PHP / File Operations
PHP makes uploading files easy. You can upload any type of file to your Web server. But with ease comes danger and you should be careful when allowing file uploads.In spite of security issues that should be addressed before enabling file uploads, the actual mechanisms to allow this are straight forward. In this tutorial we will consider how to upload files to some directory on your Web server. We will also discuss security issues concerned with the file uploading.
Upload and Rename File PHP / File Operations
This tutorial show you how to rename file when upload file to server to prevent new file overwrite an old file that exists in you server.
PHP Form Image Upload PHP / File Operations
This tutorial shows you how to upload an image on your server using PHP and html forms. You will also learn how to verify if the uploaded file is an image (checking the extension), if it doesn't overtakes a size limit and how to change the uploaded file name.
Upload and Resize an Image PHP / Dynamic Images
You have created a cool contact directory and you want to allow people to upload their own photos, or you want to create an image repository which you upload images and create thumbnails out of them. Whatever it is, you need to be able to upload images and resize them.PHP has the ability to upload files such as documents or images using the multipart/form-data protocol, but how do you use this and how do you resize the images after they are uploaded?
Php file upload PHP / File Operations
In this tutorial i will teach you how you can upload files to your website using PHP. I will teach you the basics and show you how to manage witch files may be uploaded.
Implementing PHP File Upload Security PHP / File Operations
PHP Provide easy way for Uploading Images and other Data, But if your Uploader system is not secure any one can Upload EXE, .com, .bat or any other virus files Which may be harmfull for your server. Today I will teach you how you Can make Restriction to Implementing PHP Uploader security.
Advanced File Uploader PHP / File Operations
This allows users to upload files to your server in a specific folder, with a specific file size, with a specific allowed extension list, and more....
Simple Template Systems PHP / Templates
Why work harder when you can just work smarter, and get things done in half the time? One of PHP's many uses is in creating templates, which allow you to separate content and formatting. The benefits of this are immediately obvious - you can change the look of an entire site by just editing a single line of code, and with more advanced usage of mySQL, you can even create whole sites that run on a single file.
Web page optimizer PHP / Navigation
How to go from 15kb to a file of 11kb without even changing one single line in a CSS file? Without ruining the looks and comments of our page. How to keep them intact for editing and highly parsed, optimized for speed and compressed but only for the visitors?