📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
b2be-ticaretscripti.demodesign.com.tr
/
new
📝
bankabilgilerimiz.php
← Geri Dön
<title>Banka Hesaplarımız</title> <meta name="keywords" content="<?php echo $ayar['sitekey']; ?>"> <meta name="description" content="<?php echo $ayar['sitedesc']; ?>"> <meta property="og:url" content="<?php echo $url; ?>"/> <meta property="og:title" content="Üyelik Sözleşmesi ve Rıza Metni"/> <meta property="og:description" content="<?php echo $ayar['sitedesc']; ?>"/> <ul class="breadcrumb"> <li><a href="<?php echo $url; ?>"><i class="fa fa-home"></i></a></li> <li><a href="#">Banka Hesaplarımız</a></li> </ul> <h1 class="title page-title"><span>Banka Hesaplarımız</span></h1> <div class="container"> <div class="row"> <div id="content" class="col-sm-12 table-responsive"> <table style="color: #838080;" class="table table-bordered table-hover"> <thead> <tr> <th>Banka Adı</th> <th>Şube</th> <th>Şube Kodu</th> <th>Hesap Adı</th> <th>Hesap No.</th> <th>IBAN No</th> </tr> </thead> <tbody> <?php $bankaoku = $ozy->query("select * from bankahesaplari where durum='1' order by sira DESC")->fetchAll(PDO::FETCH_ASSOC); $__BANKA__ = false; foreach ($bankaoku as $banka) { $__BANKA__ = true; ?> <tr> <td><img style="height: 65px;" src="resimler/bankalar/<?php echo $banka['resim'];?>" data-src="resimler/bankalar/<?php echo $banka['resim'];?>" class=" lazyloaded"></td> <td><?php echo $banka['sube'];?></td> <td><?php echo $banka['kod'];?></td> <td><?php echo $banka['alici'];?></td> <td><?php echo $banka['hesap'];?></td> <td><?php echo $banka['iban'];?></td> </tr> <?php } ?> <?php if (!$__BANKA__){ echo '<p> Henüz bir banka hesabı eklenmemiştir.</p>'; } ?> </tbody> </table> </div> </div> </div>
💾 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