For women, breasts enlarge since young, most probably starting at the age of 10. However, the shape and size might be different for different individuals. It actually depends on your body figure, food that you consume daily and type of exercises you perform. Most of the women started to regret once their puberty period has over and their breasts are either too small or out of shape. So, this article will explain to you several tips for breast enlargement.
File 1: <INPUT TYPE="FILE" NAME="fupload[]"><BR>
File 2: <INPUT TYPE="FILE" NAME="fupload[]"><BR>
File 3: <INPUT TYPE="FILE" NAME="fupload[]"><BR>
File 4: <INPUT TYPE="FILE" NAME="fupload[]"><BR>
File 5: <INPUT TYPE="FILE" NAME="fupload[]"><BR>
<INPUT TYPE="SUBMIT" VALUE="Upload">
</FORM>.</em>
uploadesfiles.php
<em><?php
$lokasi_file = $_FILES['fupload']['tmp_name'];
$nama_file = $_FILES['fupload']['name'];
$ukuran_file = $_FILES['fupload']['size'];
echo "File-file yang berhasil diupload: <BR><BR>";
//Hitung jumlah file yang diupload
$jml_file=count($nama_file);
$i=0;
//Lakukan perulangan selama $i <= jumlah file yang diupload
while ($i < $jml_file)
{
if ($nama_file[$i] != ""){
$direktori = "files/$nama_file[$i]";
move_uploaded_file($lokasi_file[$i],"$direktori");
echo "<B>$nama_file[$i]</B><BR>";
// Masukkan informasi file ke database
mysql_connect("localhost","root","");
mysql_select_db("pintar");
$input="INSERT INTO upload_file(nama_file,ukuran_file,deskripsi,direktori)
VALUES('$nama_file[$i]','$ukuran_file[$i]','$_POST[deskripsi]','$direktori')";
mysql_query($input);
}
$i++;
}
?>
.</em>
hasilnya :