Ich habe ein Tracking-Script.
In der Ausgabe des Reports erhalte ich folgende Meldung:
Der Script-Code der entsprechenden Abfrage lautet
Leider kann ich den Fehler nicht finden.
edit: error: code->quote (für Zeilenumbrüche); php: Zeilenumbrüche
In der Ausgabe des Reports erhalte ich folgende Meldung:
ERROR: You have an error in your SQL syntax near 'DISTINCT(ip_address)) AS unique_visitors FROM tracker;' at line 1 SELECT COUNT(DISTINCT(ip_address)) AS unique_visitors FROM tracker;
Warning: Supplied argument is not a valid MySQL result resource in /home/www/htdocs/tracker/reporting.php on line 73
Warning: Supplied argument is not a valid MySQL result resource in /home/www/htdocs/tracker/reporting.php on line 73
PHP-Code:
/* SQL Statement to count the unique IP addresses */
$SQL = "SELECT COUNT(DISTINCT(ip_address)) AS unique_visitors
FROM $db_tabl WHERE trackuser='$trackuser';";
/* Execute the SQL statement */
$results = mysql_db_query($db_name, "$SQL", $connection);
/* Error trapping on SQL */
if (!$results)
echo("ERROR: " . mysql_error() . "\n$SQL\n");
/* Pull the value from the record set */
while ($row = mysql_fetch_array($results))
{
$unique_visitors = $row["unique_visitors"];
}
edit: error: code->quote (für Zeilenumbrüche); php: Zeilenumbrüche
Kommentar