login  Naam:   Wachtwoord: 
Registreer je!
 Forum

Wat klopt er niet?

Offline Os8 - 31/03/2005 13:00 (laatste wijziging 31/03/2005 13:05)
Avatar van Os8Gouden medaille

PHP interesse
Hallo,
Ik heb een fout maar versta er dus nie aan wat de fout kan zijn.
De tabel namen en querys zijn goed benoemd
  1. <?php
  2.  
  3.  
  4. include ('connectie_stats.php');
  5.  
  6. mysql_connect("$url", "$user", "$wachtwoord");
  7. mysql_select_db("$database");
  8.  
  9.  
  10. $select = "SELECT * FROM RedirectURLHosting ORDER BY WijzigDatum DESC LIMIT 5";
  11. $obj = mysql_query($select) or die(mysql_error());
  12. while($row = mysql_fetch_object($obj)) {
  13. $select2 = mysql_query("SELECT * FROM redirect_inhits WHERE site ='".$row->Redirect."' DISTINCT ip");
  14. $hits = mysql_num_rows($select2);
  15. ?>
  16. <a href="<? echo $row->Redirect ?>" target="_blank">(<?php echo $hits; ?>)</a><br>
  17. <?
  18. }
  19. ?>
Citaat:
5 meeste inhits :

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/yotoo/public_html/statistieken.php on line 108
()

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/yotoo/public_html/statistieken.php on line 108
()

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/yotoo/public_html/statistieken.php on line 108
()

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/yotoo/public_html/statistieken.php on line 108
()

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/yotoo/public_html/statistieken.php on line 108
()

Dat is de foutmelding

5 antwoorden

Gesponsorde links
Offline Slipie - 31/03/2005 13:03
Avatar van Slipie PHP beginner vertel ons eens wat je foutmelding is
Offline Metalhead - 31/03/2005 13:03 (laatste wijziging 31/03/2005 13:04)
Avatar van Metalhead HTML gevorderde edit; 'tzelfde als slipie zegt 
Offline Metalhead - 31/03/2005 13:07 (laatste wijziging 31/03/2005 13:08)
Avatar van Metalhead HTML gevorderde SELECT * FROM redirect_inhits WHERE site =... DISTINCT ip
klopt niet....

moet zijn bijvoorbeeld
SELECT DISTINCT(ip) FROM ...

(edit; sorry voor de dubbele post (m'n 1e) )
Offline Os8 - 31/03/2005 13:08
Avatar van Os8 Gouden medaille

PHP interesse
zo ongeveer:

  1. $select2 = mysql_query("SELECT DISTINCT(ip) FROM redirect_inhits WHERE site ='".$row->Redirect."'");
Offline Metalhead - 31/03/2005 13:14
Avatar van Metalhead HTML gevorderde Ja, bijvoorbeeld...
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2025 Sitemasters.be - Regels - Laadtijd: 0.269s