Upload all types of Images with PHP

For very beginners to upload all types of images within with given maximum file size use the following code:
add code to ur interface like profile.php

<form action=”upload.php” method=”post” enctype=”multipart/form-data”>
<p>
<label for=”file”>Select an image file:</label> <input type=”file” name=”userfile” id=”file”> <br />
<button>Upload File</button>
<p>
</form>

Add code to upload.php:
<?
// Configuration – Your Options
$allowed_filetypes = array(‘.jpg’,’.gif’,’.bmp’,’.png’); // These will be the types of [...]

Upload ppt, doc or any kind of file in PHP

Do u have to upload files using PHP ? Files like .ppt, .doc, any kind of image files etc you can upload using following code. Make sure the folder where you want to upload files have write permission.
In your interface(like named resource.php) add the following code:

<form action=”upload.php” method=”post” enctype=”multipart/form-data”>
<p>
<label for=”file”>Select a file:</label> <input type=”file” name=”userfile” [...]