Kodların şimdi çok karışık anlamak için ide lazım ama çok zamanım yok bu upload sayfasına gir inceleden formu seç ordaki html kodlarını buraya at yada url at ben bakmaya çalışıyım...
<?php
if ($_POST) {
$cikti = $_FILES["inline_upload_file"];
foreach ($cikti["tmp_name"] as $key => $value) {
move_uploaded_file($value, "dosya/" . $cikti["name"][$key]);
}
}
?>
Php için bi şu kodu dener misin?
Gönderim işlemi Fetch mi? / xmlhttprequest mi? / jquery ajax mı? oluyor...
Tek yapıcağın işlem bu...
<?php
if ($_POST) {
$cikti = $_FILES["dosya"];
foreach ($cikti["tmp_name"] as $key => $value) {
move_uploaded_file($value, "dosya/" . $cikti["name"][$key]);
}
}
?>
<form action="" method="post" enctype="multipart/form-data">
Dosya Seç: <input type="file" name="dosya[]" multiple /> <button type="submit">Gönder</button>
</form>
ve Eğer javascript kullanmıyorsan verot.net ile güvenilir ve hızlı bir şekilde işini halledebilirsin...
İyi çalışmalar...
Dostum CSS biliyosan mesela display'in ne olduğunu bilmen gerekiyor ve sanırım biliyorsun dimi? Onuda javascript'i öğrenirken anlıyıcaksın onuda...
Javascript öğren eğer zor geliyorsa Tayfun Hoca'nın eskilerden bi jquery dersi vardı onları izle.
Bunların hiç biri işe yaramadı önceden deneyim bulamadığım için sordum zaten kullandığım ide PyCharm ide ile alakalı bir sorun olabilir diye düşünüyorum ama bulamadım
<input type="text" style="display:none" />
İstediğin örnek sanırım bu
<button id="toggleBtn">Aç / Kapa</button>
<div id="content">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
#content {
opacity: 0;
visibility: hidden;
position: relative;
top: 20px;
transition: 250ms all;
}
#content.active {
top: 0;
opacity: 1;
visibility: visible;
}
const toggleBtn = document.querySelector("#toggleBtn"),
content = document.querySelector("#content");
toggleBtn.addEventListener("click", () => {
content.classList.toggle("active");
});