free css templates & DataBase Design & Image Upload

http://www.spyka.net/web-templates?index=2

http://topcsstemplates.com/

http://www.csstemplatesforfree.com/

http://www.freecsstemplates.com/

http://www.freecsstemplates.org/css-templates/

http://www.solucija.com/templates/free

http://www.cssheaven.org/

http://www.templateworld.com/free_templates.html


DataBase Design

------------------Image Uplaod Code------------------------------

<form enctype="multipart/form-data" method="POST">
Choose a file to upload: <input name="uploadedfile" type="file" />

<input type="submit" value="Upload File" />
</form>

<?php
$target_path = "image/";

$target_path = $target_path . basename($_FILES['uploadedfile']['name']);

move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path);
 
 
?>

-----------------------------------------------------