Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 36
Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 37
Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 38
Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 39
Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 40
Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 41
Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 42
Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 43
Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 44
Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 45
Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 46
Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 47
Warning: Unable to jump to row 1 on MySQL result index 2 in overzicht.php on line 48
=========================================
source
include('database.php');
// Als zowel toestel als provider zijn gekozen
if ($toestel && $provider)
{
// Opmaak van een pagina voor het specifiek gekozen toestel
// Tevens zullen eventuele accesoires worden vermeld
// Hieronder worden de overige typenummers gegenereerd, aan de hand van de database.
// Eerst wordt een query gedaan met wat beperkingen
// Zo worden alle unieke Types ingeladen van het gekozen merk
$QUERY = mysql_query
("
SELECT *
FROM toestellen
WHERE toestel = '$toestel'
AND provider = '$provider'
");
$NUMROWS = mysql_num_rows($QUERY);
// Hieronder wordt het aantal entries ingelezen die voldeden aan bovenstaande query.
// Dit aantal is nodig voor het genereren van de knoppenbalk
$i = 0;
$Id = mysql_result($QUERY,$i,"Id");
$toestel = mysql_result($QUERY,$i,"toestel");
$fabrikant = mysql_result($QUERY,$i,"fabrikant");
$provider = mysql_result($QUERY,$i,"provider");
$standby = mysql_result($QUERY,$i,"standby");
$gewicht = mysql_result($QUERY,$i,"gewicht");
$spreektijd = mysql_result($QUERY,$i,"spreektijd");
$extra = mysql_result($QUERY,$i,"extra");
$beltegoed = mysql_result($QUERY,$i,"beltegoed");
$top = mysql_result($QUERY,$i,"top");
$omschrijving = mysql_result($QUERY,$i,"omschrijving");
$voorraad = mysql_result($QUERY,$i,"voorraad");
$prijs = mysql_result($QUERY,$i,"prijs");
$levertijd = mysql_result($QUERY,$i,"levertijd");
does anybody know what goes wrong here?