Multiple File Upload PHP and HTML
Multiple File Upload PHP and HTML
<html >
<head>
</head>
<body>
<?php
$i=1;
$table="<table>";
$table.="<tr>";
$table.="</tr>";
while($i<=5)
$table.="<tr>";
$table.="</tr>";
$i++;
$table.="<tr>";
$table.="</tr>";
$table.="</table>";
echo ($table);
?>
</body>
</html>
PHP Script- Save this script as upload.php (you can change the SQL attributes
used in the file according to your convenience)
<?php
$target= "upload/";
move_uploaded_file($name,$target);
?>