Birden fazla MySQL tablodan tek HTML Tablo

2 Cevap php

Ben bu ile bir süre mücadele ettik; Ben sadece mümkün burada anlatmaya çalışacağım.

Bu MySQL tablo düşünün:

+----------+-----------+---------+--------+
|status_id |session_id |pilot_id |present |
+----------+-----------+---------+--------+
|1         |61         |901      |1       |
|2         |63         |901      |1       |
|3         |62         |901      |0       |
|4         |62         |902      |1       |
|5         |63         |903      |1       |
+----------+-----------+---------+--------+

Her iki session_id ve pilot_id başka bir tablodaki birincil anahtar başvuru yaparken yabancı anahtarları. Aynı pilot_id farklı session_id ile ilişkili olabilir, ama her pilot_id - session_id kombinasyon benzersizdir.

Bu gibi verileri görüntüleyebilir edeceğini (PHP) bir HTML tablosu yapmak gerekir:

+----------+---------+---------+---------+
|          |61       |62       |63       |
+----------+---------+---------+---------+
|901       |X        |         |X        |
|902       |         |X        |         |
|903       |         |         |X        |
+----------+---------+---------+---------+

Bu nedenle, satır olan pilot_id ve sütun session_id vardır. A pilot_id zaman - session_id kombinasyon içinde bir 1-present değerine sahiptir, karşılık gelen hücre kontrol edilmelidir. (Satır-kombinasyon sıfır veya kombinasyon MySQL tablosunda olmadığında yani, hiçbir şey HTML tablosunda görünmelidir)

Vay.

Herhangi bir fikir?

Teşekkürler!


Ben erisco tarafından önerilen cevabını denedim, ama ben oldukça kafam karıştı. (Yorum alanı daha çok küçük benim açıklama için, dolayısıyla bu güncelleme benim soru için).

Bu benim ile çalışıyorum gerçek veriler:

+----------+-----------+---------+--------+
|status_id |session_id |pilot_id |present |
+----------+-----------+---------+--------+
|7         |65         |33       |1       |
|8         |66         |33       |1       |
|9         |65         |17       |0       |
|10        |66         |16       |1       |
+----------+-----------+---------+--------+

Ben kullanmak $rows = mysqli_fetch_array($result);. Ben sorgu doğru veri dönen doğruladı.

Ben ericso tarafından önerilen cevap kullanabilirsiniz Ancak, ben görünüşte rasgele veri alıyorum. Burada oluşturulan HTML tablo bulunuyor:

+----------+---------+---------+---------+---------+
|          |1        |3        |6        |7        |
+----------+---------+---------+---------+---------+
|1         |X        |         |         |         |
|3         |         |         |         |         |
|6         |         |         |         |         |
|7         |         |         |         |         |
+----------+---------+---------+---------+---------+

Ayrıca 'X' pozisyon irrelevantly present değerleri aynı kalır.

Neden herhangi bir fikir oluyor?

Teşekkürler!

2 Cevap

Neyse ki sadece bir sorgu gerekir. $ Satır küstah veritabanından çekilen verilerin biçimi:

<?php

$rows = array(
  array(
    'status_id' => 1,
    'session_id' => 61,
    'pilot_id' => 901,
    'present' => 1,
  ),
  array(
    'status_id' => 2,
    'session_id' => 63,
    'pilot_id' => 901,
    'present' => 1,
  ),
  array(
    'status_id' => 3,
    'session_id' => 62,
    'pilot_id' => 901,
    'present' => 0,
  ),
  array(
    'status_id' => 4,
    'session_id' => 62,
    'pilot_id' => 902,
    'present' => 1,
  ),
  array(
    'status_id' => 5,
    'session_id' => 63,
    'pilot_id' => 903,
    'present' => 1,
  )
);

$session_ids = array();
$pilot_ids = array();
$crosses = array();

foreach ($rows as $row) {
  $session_ids[$row['session_id']] = $row['session_id'];
  $pilot_ids[$row['pilot_id']] = $row['pilot_id'];
  if ($row['present'] == 1) {
    $cross_index = $row['session_id'].'.'.$row['pilot_id'];
    $crosses[$cross_index] = $cross_index;
  }
}

sort($session_ids);
sort($pilot_ids);

?>

<table>
  <tr>
    <th></th>
  <?php foreach ($session_ids as $sess_id): ?>
    <th><?php echo $sess_id; ?></th>
  <?php endforeach; ?>
  </tr>
  <?php foreach ($pilot_ids as $pilot_id): ?>
  <tr>
    <th><?php echo $pilot_id; ?></th>
    <?php foreach ($session_ids as $sess_id): ?>
    <?php if (isset($crosses[$sess_id.'.'.$pilot_id])): ?>
    <td>X</td>
    <?php else: ?>
    <td></td>
    <?php endif; ?>
    <?php endforeach; ?>
  </tr>
  <?php endforeach; ?>
</table>

Böyle algoritmayı kullanabilirsiniz:

$sql = "SELECT DISTINCT session_id AS sid FROM pilot_session ORDER BY 1 ASC";
$rs = mysql_query($sql, $conn);
$sessions = array();
while(false !== ($r = mysql_fetch_array($rs))){
    $sessions[] = $r['sid'];
}

$sql = "SELECT DISTINCT pilot_id AS pid FROM pilot_session ORDER BY 1 ASC";
$rs = mysql_query($sql, $conn);
$pilots = array();
while(false !== ($r = mysql_fetch_array($rs))){
    $pilots[] = $r['pid'];
}

$pilot_presence = array();
$sql = "SELECT session_id, pilot_id, present FROM pilot_session";
$rs = mysql_query($sql, $conn);
while(false !== ($r = mysql_fetch_array($rs))){
    $s_presence[$r['pilot_id']][$r['session_id']] = $r['present'];
}

echo "<table><tr><td>&nbsp</td>";
foreach($sessions as $s){
    echo "<td>$s</td>";
}
echo "</tr>";
foreach($pilots as $p){
    echo "<tr><td>$p</td>";
    foreach($sessions as $s){
        $tp = '';
        if(isset($s_presence[$p][$s])){
            if($s_presence[$p][$s] == '1'){
                $tp = 'X';
            }
        }
        echo "<td>".$tp."</td>";
    };
    echo "</tr>";
}
echo "</table>";