Hallo Usergemeinde!
Ich habe wieder ein Problem!
Nun hier ist der text:
Wenn ich bei LIMIT eine Zahl eingebe ( also 5 oder so) Dann läuft alles einwandfrei. Doch sobald ich den das mit dem "mysql_real_escape_string($blup)" rein mache geht es nicht mehr. Warum nicht?
P.s.: Bin ich im richtigen Forum?
Ich habe wieder ein Problem!
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in Bla/bla/bla
PHP-Code:
$pquery = mysql_query ("SELECT user_show_post
FROM c_user
WHERE user_name='" . mysql_real_escape_string($user) . "'");
while (list ($user_show_post) = mysql_fetch_row($pquery)) {
echo $user_show_post; //Ist nur drim um zu gucken ob auch was gefunden wird...
}
$query = mysql_query ("SELECT *
FROM c_msg
ORDER BY msg_id DESC
LIMIT " . mysql_real_escape_string($user_show_post) . "");
while (list ($msg_id, $msg_poster, $msg_text, $msg_date) = mysql_fetch_row ($query)) {
TU_WAS!
}
P.s.: Bin ich im richtigen Forum?
Kommentar