Without a doubt, you will find a wide variety of developer and webmaster resources that include tutorials, articles, website ideas, website reviews, and a developer resource directory.

Developer Checklist
These are the basic steps involved in any development project:

  • Start with an idea
  • Research idea
  • Make a content plan
  • Buy a domain 
  • Gather content
  • Buy or design template
  • Get logo made
  • Structure site
  • Fill in content
  • Find web hosting
  • Upload site 

Visit other websites that are owned and operated by Developerz.com.

Domain Names
Free Online Games
Stock Directory
Game Search Engine
Domain Name Directory
Domain Articles
Web Hosting Directory
Cheap Domain Registration

 

   


File Uploader

First: Make the directory to upload the files. You must CHMOD it to 777.

Here is the first code(HTML) that makes the upload form. Put it where you want.

CODE

<form action="upload.php" method="post" ENCTYPE="multipart/form-data">
upload file:
<input type='file' size='40' name='imagefile' maxlength='255'>
<input type='hidden' name='MAX_FILE_SIZE' value='500000'>
<input type="submit" value="upload">
</form>


Now itīs time for the PHP part.
Make a new file and name it 'upload.php'.
Copy and paste this code into the file upload.php.

CODE

<?
// Replace 'x' with the complete path to where you want upload!
$uploaddir = "x";

if(($HTTP_POST_FILES['imagefile']['type'] == "image/gif")){
$file_realname = trim($HTTP_POST_FILES['imagefile']['name']);
move_uploaded_file($HTTP_POST_FILES['imagefile']['tmp_name'], $uploaddir . $file_realname) or die ("Could not copy the file");
echo "File uploaded succesfuly!"; }

else{
echo "Wrong Filetype ".$HTTP_POST_FILES['imagefile']['name']";
}
?>


Tutorial By Xtasy