Ik zit met een probleempje:
Ik heb nu de volgende code:
<?php
mysql_select_db($database_VCA, $VCA);
$query_functies = "SELECT * FROM list_functies";
$functies = mysql_query($query_functies, $VCA) or die(mysql_error());
$row_functies = mysql_fetch_assoc($functies);
$totalRows_functies = mysql_num_rows($functies);
?>
en:
<table>
<?php
while($row_functies = mysql_fetch_assoc($functies))
{
echo "<tr>";
echo "<td class=\"veld\" style=\"border-left-width:0px; border-right-width:1px;\">";
echo $row_functies['functie_omschrijving'];
echo "</td>";
echo "</tr>";
}
?>
</table>
In de database staan 5 records, probleem is dat er maar 4 worden weergegeven op de pagina.
Ik heb vanalles opgezocht op 't net maar krijg 't niet goed...
Is er iemand die een oplossing weet?
Ik heb nu de volgende code:
<?php
mysql_select_db($database_VCA, $VCA);
$query_functies = "SELECT * FROM list_functies";
$functies = mysql_query($query_functies, $VCA) or die(mysql_error());
$row_functies = mysql_fetch_assoc($functies);
$totalRows_functies = mysql_num_rows($functies);
?>
en:
<table>
<?php
while($row_functies = mysql_fetch_assoc($functies))
{
echo "<tr>";
echo "<td class=\"veld\" style=\"border-left-width:0px; border-right-width:1px;\">";
echo $row_functies['functie_omschrijving'];
echo "</td>";
echo "</tr>";
}
?>
</table>
In de database staan 5 records, probleem is dat er maar 4 worden weergegeven op de pagina.
Ik heb vanalles opgezocht op 't net maar krijg 't niet goed...
Is er iemand die een oplossing weet?
I'm not weird, I'm a limited edition