1331 gün önce Jquery Çoklu fotoğraf yükleme hakkında
sorusunu cevapladı.
1 . veriden sonra hep array olarak yazdırıyor :(
<?php
<?php
$baglan = "localhost";
$dbname = "resim";
$kullanici = "root";
$parola = "";
try {
$db = new PDO("mysql:host=$baglan;dbname=$dbname;charset=utf8",$kullanici,$parola);
} catch (PDOException $e) {
echo $e->getMessage();
}
?>
<form action="" method="POST" enctype="multipart/form-data">
<p>Resimler:
<input type="file" name="gorsel[]" />
<input type="file" name="gorsel[]" />
<input type="file" name="gorsel[]" />
<input type="submit" name="resimkayit" value="Gönder" />
</p>
</form>
<?php
if (isset($_POST['resimkayit'])) {
foreach ($_FILES["gorsel"]["error"] as $anahtar => $hata) {
if ($hata == UPLOAD_ERR_OK) {
$uploads_dir = 'data';
@$tmp_name = $_FILES['gorsel'][ "tmp_name" ][$anahtar];
$benzersizsayi4 = rand( 20000, 32000 );
$uzanti = '.jpg';
$resimyol = substr( $uploads_dir ) . "/" . $benzersizsayi4 . $uzanti .[$anahtar];
@move_uploaded_file( $tmp_name, "$uploads_dir/$benzersizsayi4$uzanti");
}
}
$kaydet=$db->prepare("INSERT INTO resim SET
gorsel=:gorsel");
$insert=$kaydet->execute(array(
'gorsel' => $resimyol
));
if ($insert) {
header("Location:index.php?durum=ok");
} else {
header("Location:index.php?durum=no");
}
}
?>
1331 gün önce Jquery Çoklu fotoğraf yükleme hakkında
sorusunu cevapladı.
Haaa diğer text kaydetme gibi anladım peki bu görselleri nası çekebiliriz fikriniz varmı hocam
1334 gün önce php log tutma
sorusunu cevapladı.
Evet istediğim bu şekilde eski kaydı tutmak istiyorum bi mantık oluşturamadım kısa bir fonksiyon yazabilirmisiniz
1335 gün önce option Value değerini selected olarak getirmek
sorusunu cevapladı.
<?php
<option value="1" <?php echo $vericek['veri_durum'] == '1' ? 'selected=""' : ''; ?>>Veri</option>
?>
Kendine göre düzenleyip denermisin ?
1338 gün önce php pdo veri çekme
sorusunu cevapladı.
Sandığım kadar zor birşey değilmiş foreach ile inputu döngüye aldırdım verileri yazdırdım
1341 gün önce Jquery ile çoğaltılmış veriyi nası çekeriz
sorusunu cevapladı.
Renk Eklettirme kodları
<?php
<div class="container">
<div class="row" >
<form action="" method="post">
<label id="westarz">Renk Ekle</label>
<input type="text" name="renk[]" class="form-control" placeholder=""><a href="nojavascript...void(0);" class="addCF">Ekle</a>
<br>
<br>
<button type="submit" class="btn btn-success">Kayıt Et</button>
</form>
if (isset($_POST['renk'])){
$renk = $_POST['renk'];
$renkler = implode($renk,",");
$kaydet=$db->prepare("INSERT INTO renkler SET
renk=:renk
");
$insert=$kaydet->execute(array(
'renk' => $renkler
));
}
</div>
</div>
</body>
</html>
<script type="text/javascript">
$(document).ready(function(){
var cnt = 2;
$(".addCF").click(function(){
$("#westarz").append('<tr><td><input type="text" name="renk[]" class="form-control" placeholder=""></td><td><a href="nojavascript...void(0);" class="remCF">Sil</a></td></tr>');
cnt++;
});
$("#westarz").on('click','.remCF',function(){
if (confirm("Silmek istediğinizden emin misiniz?"))
{
$(this).parent().parent().remove();
}
});
});
</script>
Veri.php de çektiriyorum
$verisor=$db->prepare("SELECT * FROM renkler ");
$verisor->execute();
<select>
<?php while($vericek=$verisor->fetch(PDO::FETCH_ASSOC)) { ?>
<option><?php echo $vericek['renk']; ?></option>
<?php } ?>
</select>
Verdiği çıktı ekte :
https://i.resmim.net/i/resim_2021-05-10_141730.png
Benim istediğim verileri ayırıp tek tek yazdırması
örnek :
https://i.resmim.net/ouyxE.png
?>