Şimdi Ara

input hiddeni post edemiyorum

Daha Fazla
Bu Konudaki Kullanıcılar: Daha Az
1 Misafir - 1 Masaüstü
5 sn
1
Cevap
0
Favori
144
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
0 oy
Öne Çıkar
Sayfa: 1
Giriş
Mesaj
  • iyi günler üstadlar ,

    kullanici.php diye bir dosya oluşturdum ve üyeleri tabloya döküp sıraladım hemen yanına da onay checkbox ekleyip chekboxın yanına da onayla butonu ekledim.
    Üye id sini input hidden ile gönderiyorum fakat update işlemlerini yaparken checkboxın tiki değişmiyor.

    Sorunu bi türlü anlayamadım. Sanırım fazla kodlama yapmaktan :)

    bi bakarsanız sevinirim


    kullanici.php:
      <table class="table table-hover"> 
    <tr>
    <th>ID</th>
    <th>Kullanıcı adı</th>
    <th>Email adresi</th>
    <th>Kayıt Tarihi</th>
    <th>Onayla</th>
    <th></th>
    <th></th>
    </tr>

    <?php
    $sor = mysql_query("select * from uyeler order by id DESC");
    while ($kullanici_al = @mysql_fetch_array($sor)){

    ?>
    <tr><form action="kullaniciguncelle.php" method="post" >
    <td><?php echo $kullanici_al['id']; ?></td>
    <td><a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=120898510&url=#" data-href="#"><?php echo $kullanici_al['kadi']; ?></a></td>
    <td><?php echo $kullanici_al['mail']; ?></td>
    <td><?php echo $kullanici_al['ktarih']; ?></td>


    <td>
    <?php
    if ($kullanici_al['onay'] == 0) {
    ?>
    <input type="checkbox" name="onay" value="<?php echo $kullanici_al['onay']; ?>" >
    <input type="hidden" name="id" value="<?php echo $kullanici_al['id']; ?>" >

    <?php
    }else{
    ?>
    <input type="checkbox" name="onay" value="<?php echo $kullanici_al['onay']; ?>" checked >
    <input type="hidden" name="id" value="<?php echo $kullanici_al['id']; ?>" >
    <?php
    }
    ?>

    </td>
    <td><input type="submit" value="Uygula" class="btn btn-primary"></td>

    <td></td>
    </tr></form>
    <?php

    }
    mysql_free_result($sor);
    ?>
    </table>


    kullaniciguncelle.php:
     <?php 

    include "db.php";
    ob_start();

    $gelen = $_POST['onay'];
    $kulid = $_POST['id'];

    $sor = mysql_query("update uyeler set onay='$gelen' where id='$kulid' ");

    if ($sor) {

    echo "Güncellendi";
    header ("Location:kullanici.php");
    }else{

    echo "güncellenemedi";

    }
    ?>



    < Bu mesaj bu kişi tarafından değiştirildi mysqlinsan -- 6 Ekim 2016; 0:26:06 >







  • Yapay Zeka’dan İlgili Konular
    Daha Fazla Göster
    
Sayfa: 1
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.