Tablo hakkında (başlık bulamadım)
SQL YAPIM
<?php
<tbody>
<?php
$options = $db->query('SELECT * FROM siparis_ozellikleri')->fetchAll(PDO::FETCH_ASSOC);
function filterType($options, $type) {
$optionzx = array();
foreach($options AS $option){
if($option['ozellik_tip'] === $type){
$optionzx[] = $option['ozellik'];
return $optionzx;
}
};
}
$colors = filterType($options, 'renk');
$sizes = filterType($options, 'beden');
$numbers = filterType($options, 'ayakkabi');
$renkler = count($colors);
$kombin = array();
for($i=0; $i < $renkler; $i++)
{
$kombin[] = array('Renk' => $colors[$i], 'Beden' => $sizes[$i], 'Ayakkabi' => $numbers[$i]);
}
?>
<tr>
<?php foreach($options AS $kombin ){ ?>
<td><?php echo $kombin['ozellik']; ?></td>
<?php } ?>
</tr>
</tbody>
?>
Çıktısı:
Benim istediğim ise
Bu hale nası getirebilirim
Soru hatalı mı? 👎
Eğer sorunun kurallara aykırı olduğunu düşünüyorsanız lütfen bize bildirin!