Hallo Ihr,
ich habe jetzt schon alles versucht und komme nicht auf meinen Fehler. In der Variablen $confirm_code wird ein 32-stelliger hash-code aus der Bestätigunsmail übergeben.
Jedoch kommt folgende Meldung und es wird nur ein 15-stelliger Code angezeigt:
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ''.newsletter_jugendfussball.' WHERE name LIKE '.f9e01c4b95bbc28
Hier der Code:
<?php
include("config.php");
$HTTP_GET_VARS["email"] = $email;
$HTTP_GET_VARS["confirm_code"] = $confirm_code;
//echo $email;
//echo $confirm_code;
$abfrage = "SELECT * FROM '.$db_table.' WHERE name LIKE '.$confirm_code.'";
$query = mysql_query($abfrage);
$result = mysql_fetch_array( $query) or die (mysql_error());
if (mysql_num_rows($query) > 0) ... u.s.w.
Vielleicht kann mir jemand helfen, da ich auch erst Anfänger bin...
Gruß Sabine