FRage zu SQL Code von Funktionpost.php
Verfasst: 20.01.2004 01:38
Hallo
ich will die Bez."k_id=$k_id" einbauen! Frage wo kann ich in am besten hinsetzten
1
2
Wer kennt sich besser mit aus als ich und knn mir ein Tipp geben!
Danke im voraus.
lg.rcbcom
[/quote]
ich will die Bez."k_id=$k_id" einbauen! Frage wo kann ich in am besten hinsetzten
1
oder so:$sql = ($mode != "editpost") ? "INSERT INTO " . TOPICS_TABLE . " (topic_title, topic_extra, topic_poster, topic_time, forum_id, topic_status, topic_type, topic_vote, k_id) VALUES ('$post_subject', '$post_extra', " . $userdata['user_id'] . ", $current_time, $forum_id, " . TOPIC_UNLOCKED . ", $topic_type, $topic_vote, $k_id)" : "UPDATE " . TOPICS_TABLE . " SET topic_title = '$post_subject', topic_extra = '$post_extra', topic_type = $topic_type, k_id=$k_id " . (($post_data['edit_vote'] || !empty($poll_title)) ? ", topic_vote = " . $topic_vote : "") . " WHERE topic_id = $topic_id";
if (!$db->sql_query($sql))
2
Laut den Modbeschreibeung muss k_id=$k_id hinter topic_vote! Aber kann ich das den auch nicht wie bei 1 lassen ?$sql = ($mode != "editpost") ? "INSERT INTO " . TOPICS_TABLE . " (topic_title, topic_extra, topic_poster, topic_time, forum_id, topic_status, topic_type, topic_vote, k_id) VALUES ('$post_subject', '$post_extra', " . $userdata['user_id'] . ", $current_time, $forum_id, " . TOPIC_UNLOCKED . ", $topic_type, $topic_vote, $k_id)" : "UPDATE " . TOPICS_TABLE . " SET topic_title = '$post_subject', topic_extra = '$post_extra', topic_type = $topic_type, " . (($post_data['edit_vote'] || !empty($poll_title)) ? ", topic_vote = " . $topic_vote :, "k_id=$k_id ") . " WHERE topic_id = $topic_id";
if (!$db->sql_query($sql))
Wer kennt sich besser mit aus als ich und knn mir ein Tipp geben!
Danke im voraus.
lg.rcbcom
[/quote]