HTML Code:
<html> <head><title>Upload Files</title> </head> <body> </br> <center> <form action="upload.php" method="POST" enctype="multipart/form-data"> <input type="file" name="img"/><br> <input type="submit" value="click to upload" name="sub"> </form> <? php if(isset($_POST['sub'])) { $file=$_FILES["img"]["name"]; $dir="images/"; $tot_dir=$dir.$file; if(move_uploaded_file($_FILES["img"]["tmp_name"],$tot_dir)) { ?> <img src="images/<?php echo $file; ?> "border="0" /> <?php } ?> </center> </body> </html>
Any help would be greatly appreciated.
Thanks

