1620 gün önce php \Aura\Session\Segment $segment; sorunu ACİL!!
sorusunu cevapladı.
yukarıya
use Aura\Session\Segment; // bu şekilde ekle
class Auth
{
public Segment $segment; // olarak değiştirip dene
1620 gün önce Üstüne tıklanınca değişen resim
sorusunu cevapladı.
kabaca şöyle bişey yaptım üzerinde düzenleme yaparsın.
<div class="product col-sm-6 col-xs-6">
<input type="radio" name="Siparis" value="1025" id="2" checked="checked" />
<img src="https://i.hizliresim.com/fzf5lyf.jpg" alt="Image" class="product-image" />
<div class="wrapper">
<div class="wrapper-txt">Seçiniz</div>
</div>
<input type="radio" name="product_id[]" value="1025">
<input type="radio" name="custom_options_default[1]" id="not2" class="color" value="CİNSİYET ve BEDEN bilgisi istemeyi UNUTMAYIN..!" />
</div>
*{
margin: 0px;
padding: 0px;
}
.product {
display:flex;
position: relative;
width: 401px;
height: 726px;
}
.product img ,.product .wrapper{
margin: 0px auto;
padding: 0px;
}
.product.selected .wrapper {
content: '';
border: 3px solid #c0bd18;
}
.product.selected .wrapper-txt{
background: #c0bd18;
}
.wrapper {
width: calc(100% - 40px);
height: calc(100% - 64px);
position: absolute;
top: calc(50% - 8px);
left: 50%;
display:flex;
flex-direction:column;
border: 3px solid black;
transform: translate(-50%, -50%);
}
.wrapper .wrapper-txt{
font-size: 3em;
background: black;
min-width: calc(100% - 40px);
height: 67px;
color: white;
left: 50%;
transform: translateX(-50%);
cursor: pointer;
position: absolute;
bottom: -25px;
text-align: center;
z-index: 2;
}
.product [type=radio] {
position: absolute;
opacity: 0;
}
$('[name="custom_options_default[1]"]:eq()').attr("checked", true);
$(".product").click(function() {
if (!$(".custom-option", $(this)).length) {
$(this).addClass("selected");
$(this).find(".wrapper-txt").text("Seçildi ✓");
}
var $siblings = $(this).siblings(".product");
$siblings.find(".custom-option").val("");
$(this).parents(".checkout-form").find("[name='product_id[]']").attr("checked", false);
$(this).parents(".checkout-form").find("[name='urun']").attr("checked", false);
$(this).find("[name='product_id[]']").attr("checked", true);
$(this).find("[name='urun']").attr("checked", true);
console.log("submit");
$(".smart-checkout-form222").submit();
});
1621 gün önce Veri tabanını tablolarını gruplandırarak parçalamak performansı artırır mı
sorusunu cevapladı.
ücretsiz sql server için veritabanı tasarım eğitimi bu fikir olması açısından
https://www.udemy.com/share/101xskAkoZd1ZUTH4=/
1621 gün önce c# ile eğik atış
sorusunu cevapladı.
1621 gün önce Format sonrası MySql veritabanlarına erişmek
sorusunu cevapladı.
@lubi veritabanına hangi programla erişim sağlıyorsan kullandığın programdan Dışa aktar(Export) diyerek .sql dosyası olarak tabloları dışarı aktarabilirsin.
1621 gün önce youtube'den kendi şarkı indirme sitemizi nasıl yaparız
sorusunu cevapladı.
1621 gün önce Youtube dan kanalıma ait Vidyoları çekme
sorusunu cevapladı.
1621 gün önce Php cURL boş dönüyor
sorusunu cevapladı.
bu şekilde localhost'ta bilgileri çekebilirsin ama hostingde çalışmıyor diye biliyorum.
1621 gün önce Login işlemlerinde ziyaretci bölümü
sorusunu cevapladı.
https://youtu.be/ogLgpMiZhvg?t=1028
Videodaki bu kısıma dikkatli bakarsan anlarsın.
<?php if(auth()->guard()->guest()): ?>
<h3>Ziyaretçi</h3>
<?php endif: ?>
1621 gün önce JavaScript hatası
sorusunu cevapladı.
Aşağıdaki kodu yazarsan sorunsuz çalışır.
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hesap Makinesi</title>
<script src="jquery.js"></script>
<script src="javaScriptFunctions.js"></script>
</head>
<body>
<input id="ad" placeholder="Adınız"><br>
<input id="soyad" placeholder="soyadınız"><br>
<button id="tamam">Tamam</button>
<script>
document.addEventListener('DOMContentLoaded', function () {
let ad = document.getElementById("ad").value;
let soyad = document.getElementById("soyad").value;
let tamam = document.getElementById("tamam");
tamam.addEventListener('click', function(){
alert("Adınız :"+ad+" Soyadınız: "+soyad+". Sisteme hoş geldiniz.");
});
});
</script>
</body>
</html>