Query springer første post over?
Hej jer super dygtige eksperter. :-)Jeg er ved at lave om fra mysql til mysqli og det virker - men jeg har lavet en fejl, hvor den første post bliver sprunget over.
Er der en venlig sjæl, der kan hjælpe, da jeg nu har set mig blind på problemet.
link:
http://www.orkiderejser.dk/dest/bangkok3.php
mvh Jan
<?php
// Der er 6 poster med id 20, 21, 22, 84, 69 og 63. Id 20 bliver ikke vist?
$que = $mysqli->query("SELECT id_hotel FROM hotel_id_dest WHERE id_rundrejse = '$id'");
$row_Recordsetid = $que->fetch_assoc();
$idh = $row_Recordsetid['id_hotel'];
// echo $idh, " første post ok", "<br>";
while ($row_Recordsetid = $que->fetch_assoc()) {
$idh = $row_Recordsetid['id_hotel'];
// echo $id; //, "<br>"; OK
// echo $idh," Mangler første post.";
$query_Recordset1 = $mysqli->query("SELECT * FROM hotel WHERE id = '$idh'");
while ($row_Recordset11 = $query_Recordset1->fetch_assoc()) {
?>
<div class="hotelramme">
<div class="hoteloverskrift"><?php echo $row_Recordset11['hotelnavn']; ?> <?php echo $row_Recordsetid['id_hotel']; ?> </div>
<div class="topvtekst">
<div>
<div><?php echo $row_Recordset11['hotelnavn']; ?>
<?php include($_SERVER["DOCUMENT_ROOT"] . '/include/hotelkategori.inc'); ?>
<strong><?php echo $row_Recordset11['katplus']; ?></strong> </div>
<div><?php echo nl2br($row_Recordset11['adresse']); ?></div>
<p><?php echo nl2br($row_Recordset11['beskrivelse']); ?></p
>
<p><?php echo $row_Recordset11['beskrivelse_tabel']; ?></p>
</div>
</div>
<div class="topbilledehotel"><img src="../img/<?php echo $row_Recordset11['billede1']; ?>" alt="<?php echo $row_Recordset11['alt1']; ?>" border="0" align="right" /></div>
<div class="topbilledehotel"><img src="../img/<?php echo $row_Recordset11['billede2']; ?>" alt="<?php echo $row_Recordset11['alt2']; ?>" border="0" align="right" /></div>
<div class="topbilledehotel"><img src="../img/<?php echo $row_Recordset11['billede3']; ?>" alt="<?php echo $row_Recordset11['alt3']; ?>" border="0" align="right" /></div>
<?php if ($row_Recordset11['pris']!= NULL) { ?>
<div class="undertekst"><?php echo $row_Recordset11['pris']; ?></div>
<?php
}
echo '';
?>
<?php include($_SERVER["DOCUMENT_ROOT"] . "/include/fakta_hotel.inc"); ?>
</div>
<?php } }
?>