Kayıtlar

Ocak, 2024 tarihine ait yayınlar gösteriliyor

php 8 de çalışan phpmailer kodu

https://github.com/PHPMailer/PHPMail...ses/tag/v6.9.1 Şu sayfanın altından zip klasörünü indir. Sonra projenin ana klasörüne PHPMailer olarak bir klasör aç ve içine zipteki dosyaları at. Örneğin şöyle olacak:public_htmlPHPMailerlanguage src ...(diğer dosyalar) index.php digerdosyalar.php ... ... index.php içerisine şöyle örnek vereyim: <?php use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require 'PHPMailer/src/PHPMailer.php'; require 'PHPMailer/src/SMTP.php'; require 'PHPMailer/src/Exception.php'; $mail = new PHPMailer(true); try { $mail->SMTPDebug = 0; $mail->isSMTP(); $mail->Host = '******'; // smtp.sunucu.com / mail.sunucu.com $mail->SMTPAuth = true; $mail->Username = '***@***.***'; // SMTP kullanıcı adı yani e-posta $mail->Password = '**********'; // SMTP parola $mail->SMTPSecure = 'ssl'; // SSL veya TLS $mail->Port = 465; // SMTP bağlantı nok...

php ile rasgele sıralanan resimler yapmak

<?php $numbers = range( 1 , 4 ); // 4 tane resim varsa shuffle($numbers); foreach ($numbers as $number) { echo ' <img src=" https://foreverautohits.com/ img/manuel_' .$number. '.jpg"/>'; } ?>  test için  http://www.phptester.net  adresini kullanabilirsiniz.  

profil sayfalarından sitenize backlink alabileceğiniz siteler

https://myanimelist.net/profile/seydia https://dergipark.org.tr/tr/pub/@seydia https://www.provenexpert.com/seydia/ https://social.msdn.microsoft.com/profile/foreverautohits/ https://altndaylseydi.livepositively.com/https-foreverautohits-com/

php siteye çoklu dil desteği yapmak

 sitenin dil değişimi yapacak sayfa dilyap.php <?php setcookie("dil", $_GET['dil'], time() + 86400,"/");  // 24 saatlik dil cookie si oluşturur. $ref = $_SERVER['HTTP_REFERER']; header('Location: '.$ref);  //hangi sayfada dil değişimi için tıklandıysa o sayfaya geri döner ?> dil seçimi yapılacak sayfaya ekliyoruz. <?php  if($_COOKIE['dil']=='eng') {    echo 'English <a href="../dilyap.php?dil=tr" class="git">Türkçe</a>'; } else {    echo 'Türkçe <a href="../dilyap.php?dil=eng" class="git">English</a>';} ?> dil.php oluşturalım <?php if($_COOKIE['dil']=='eng') {    $dil = 'eng';} else {    $dil = 'tr';} if($dil == 'tr') { $anasayfa = 'Anasayfa'; // buraya anasayfa örneğinde olduğu gibi metinlerin Türkçesini düzenleyin. } if($dil == 'eng') {     $anasayfa = 'Home'; // buray...

bitly den Link-in-bios

Resim
bitly.com Link-in-bios bölümü ile istediğiniz şekilde link sayfası oluşturabilirsiniz.

NoFollow Backlink ve DoFollow Backlink Listesi

Sıra Alan Adı DA Tür 1 blogger.com 84 Nofollow 2 amazon.com 96 Dofollow 3 microsoft.com 99 Dofollow 4 livejournal.com 61 Dofollow 5 disqus.com 93 Dofollow 6 crunchbase.com 91 Nofollow 7 about.me 92 Nofollow 8 instructables.com 93 9 deviantart.com 71 Nofollow 10 youtube.com 100 Dofollow 11 flickr.com 92 Dofollow 12 gravatar.com 95 Nofollow 13 github.com 96 Nofollow 14 issuu.com 94 Nofollow 15 buzzfeed.com 93 Dofollow 16 ted.com 93 Nofollow 17 quora.com 93 Nofollow 18 appfutura.com 46 Nofollow 19 facebook.com 96 Nofollow 20 instagram.com 93 Nofollow 21 twitter.com 94 Dofollow 22 linkedin.com 99 Dofollow 23 pinterest.com 94 Nofollow 24 vimeo.com 96 Nofollow 25 behance.net 92 Dofollow 26 theverge.com 93 Nofollow 27 intensedebate.com 80 Dofollow 28 magcloud.com 79 Nofollow 29 openstreetmap.org 88 Nofollow 30 trello.com 92 Nofollow 31 medium.com 95 Nofollow 32 storeboard.com 60 Dofollow 33 weheartit.com 78 Nofollow 34 authorstream.com 85 Nofollow 35 reddit....

js ile açıklamalı link sistemi yapmak

<style> .link   {       text-decoration : none ;     color : #fff ;     background-color : #00a8b1 ;     padding : 5px ;     font-size : 16px ;     font-family : tahoma ;     border-radius : 5px ;     border : 0px solid ;     margin : 2px ; } .city {     font-size : 16px ;     font-family : tahoma ;     width : 95% ;     padding : 10px ;     background-color : #fdff9b ;     float : left ;     margin-top : 10px ; }   </style> <div style = " width: 96%; float:left;" > <button onclick = " openCity( 'menu1' )" class = "link" > menu1 </button> <button onclick = " openCity( ' menu2 ' )" class = "link" > menu2 </button> <button onclick = " openCity( ' menu3 ' )" class = "link" > menu3 </button> </div> <div id = " menu1 " class = "city" style = " di...

siteye mobilden girildiğinde mobil uyumlu sayfaya yönlendirme

index sayfasına eklenecek kod <?php $iphone = strpos ($_SERVER[ 'HTTP_USER_AGENT' ], "iPhone" ); $android = strpos($_SERVER[ 'HTTP_USER_AGENT' ], "Android" ); $palmpre = strpos($_SERVER[ 'HTTP_USER_AGENT' ], "webOS" ); $berry = strpos($_SERVER[ 'HTTP_USER_AGENT' ], "BlackBerry" ); $ipod = strpos($_SERVER[ 'HTTP_USER_AGENT' ], "iPod" ); // kontrol ve yönlendirme if ($iphone || $android || $palmpre || $ipod || $berry == true ) {     header( 'Location: mobil.php' ); //yada     echo "<script>window.location='mobil.php'</script>" ; } ?> mobil sayfanıza eklenecek kod <meta name = "viewport" content = "width=device-width, initial-scale=1.0" />

Online Not Alma Sitesinden Backlink

Resim
  alotnote.com üye olun. not ekleyin. eklediğiniz notun gizlilik ayarını düzenleyin. notun gizli kalsın mı sorusuna HAYIR ı işaretleyin.