📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv4.demodesign.com.tr
/
wpanel
/
islemler
📝
galerekle4.php
← Geri Dön
<?php if(!defined("Hacking")){die("404 Not Found"); } ?> <style> .files input { outline: 2px dashed #92b0b3; outline-offset: -10px; -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear; transition: outline-offset .15s ease-in-out, background-color .15s linear; padding: 120px 0px 85px 35%; text-align: center !important; margin: 0; width: 100% !important; } .files input:focus{ outline: 2px dashed #92b0b3; outline-offset: -10px; -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear; transition: outline-offset .15s ease-in-out, background-color .15s linear; border:1px solid #92b0b3; } .files{ position:relative} .files:after { pointer-events: none; position: absolute; top: 60px; left: 0; width: 50px; right: 0; height: 56px; content: ""; background-image: url("../images/upIcon.png"); display: block; margin: 0 auto; background-size: 100%; background-repeat: no-repeat; } .color input{ background-color:#f1f1f1;} .files:before { position: absolute; bottom: 10px; left: 0; pointer-events: none; width: 100%; right: 0; height: 40px; content: "Dosyaları sürükleyip buraya bırakın"; display: block; margin: 0 auto; color: #2ea591; font-weight: 600; text-transform: capitalize; text-align: center; } img{ max-width:100px; height:100px; margin-top:20px; } input{ margin-top:20px; } </style> <div id="tour-11" class="header-content"> <h2><i class="fa fa-camera"></i>Yeni Fotoğraf Ekle</h2> </div> <div class="body-content animated fadeIn"> <div class="container"> <div class="row"> <div class="col-md-12"> <form method="post" action="#" id="#"> <div class="form-group files color"> <label>Fotoğrafları Ekleyin</label> <input type="file" class="form-control" multiple="" onchange="readURL(this);"> </div> </form> </div> <div class="col-md-12" id="preview"> <img id="blah" src="http://placehold.it/180" alt="your image" /> </div> </div> </div> </div> <script> function readURL(input) { if (input.files && input.files[0]) { var reader = new FileReader(); var btn = document.createElement("img"); document.getElementById('preview').appendChild(btn); reader.onload = function (e) { $('#blah') .attr('src', e.target.result); }; reader.readAsDataURL(input.files[0]); } } </script>
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula