Przedszkolak
Postów: 39 Ostrzeżeń: 2
Data rejestracji: 03.01.2010 01:17
|
Od kilku godzin męczę się z tym panelem. Chciałbym aby wyświetlał tytuł komentowanego filmu.
Przeszukałem całe forum i nie znalazłem podobnego problemu ani kodu który by mi pomógł.
Jestem cienki z php i nie rozumiem jak mam to dodać do pętli...
Kod panelu
GeSHi: PHP $iletekstu=150; //ilość wyświetlanych znaków z treści komentarza @openside("3 ost. kom. w Artykułach"); $result = dbquery("SELECT comment_id, comment_message, comment_item_id, comment_datestamp, comment_type, ifnull(user_name, comment_name)as 'user_name' FROM ".$db_prefix."comments LEFT JOIN ".$db_prefix."users ON comment_name=user_id WHERE comment_type='W' GROUP BY comment_id, comment_message, comment_item_id, comment_datestamp, user_name ORDER BY comment_id DESC LIMIT 0,3"); if (dbrows($result) != 0) { while($data = dbarray($result)) { $itemsubject = trimlink($data['comment_message'], $iletekstu); $typ='filmy.php?film_id' ; $nazwa='Artykuły'; echo "<img src='".THEME."images/bullet.gif' alt=''> Dodał: <span class='shoutbox-edycja'>".$data['user_name']."</span></br><span class='shoutboxdate'>".showdate("shortdate", $data['comment_datestamp'])."</span> </br><a href='".BASEDIR.$typ."=".$data['comment_item_id']."' title='".$data['comment_message']."' class='side'>$itemsubject</a><br></br>\n"; } } else { echo "<center>".$locale['004']."</center>\n"; }
Zinterpretowano w sekund: 0.042, wykorzystano GeSHi 1.0.8.10
kawałek kodu z moda filmy online
GeSHi: PHP "film_id" => $data['film_id'], "user_id" => $data['user_id'], "user_name" => $data['user_name'], "film_date" => $data['film_datestamp'], "film_breaks" => $data['film_breaks'], "film_comments" => dbcount("(comment_id)", "comments", "comment_type='W' AND comment_item_id='".$data['film_id']."'"), "film_reads" => $data['film_reads'], "film_allow_comments" => $data['film_allow_comments'] <input type='hidden' name='film_id' value='".$data['film_id']."'>\n <input type='hidden' name='film_cat' value='".$data['film_cat']."'>\n <input type='hidden' name='film_name' value='".$data['film_subject']."'>\n <input type='submit' name='broken_link' value='".$locale['420']."' class='link'>\n
Zinterpretowano w sekund: 0.023, wykorzystano GeSHi 1.0.8.10
Wiadomość doklejona:
Zrobiłem tak :
zamiast urzytkownika wyświetla mi nazwe filmu pewnie jest to nie poprawny kod ale działa ;P
GeSHi: PHP $iletekstu=150; //ilość wyświetlanych znaków z treści komentarza @openside("3 ost. kom. w Artykułach"); $result = dbquery("SELECT comment_id, comment_message, comment_item_id, comment_datestamp, comment_type, ifnull(film_subject, comment_item_id)as 'film_nazwa' FROM ".$db_prefix."comments LEFT JOIN ".$db_prefix."film ON comment_item_id=film_id WHERE comment_type='W' GROUP BY comment_id, comment_message, comment_item_id, comment_datestamp, film_id ORDER BY comment_id DESC LIMIT 0,9"); if (dbrows($result) != 0) { while($data = dbarray($result)) { $itemsubject = trimlink($data['comment_message'], $iletekstu); $typ='filmy.php?film_id' ; $nazwa='Artykuły'; echo "<img src='".THEME."images/bullet.gif' alt=''> Dodał: <span class='shoutbox-edycja'>".$data['film_nazwa']."</span></br><span class='shoutboxdate'>".showdate("shortdate", $data['comment_datestamp'])."</span> </br><a href='".BASEDIR.$typ."=".$data['comment_item_id']."' title='".$data['comment_message']."' class='side'>$itemsubject</a><br></br>\n"; } } else { echo "<center>".$locale['004']."</center>\n"; }
Zinterpretowano w sekund: 0.025, wykorzystano GeSHi 1.0.8.10
Chciał bym aby wyświetlał i nazwe filmu i urzytkownika.
Może mi kotś powiedzieć jak to ma być....? zmieszałem się w tym sqlu:
GeSHi: PHP $result = dbquery("SELECT comment_id, comment_message, comment_item_id, comment_datestamp, comment_type, ifnull(film_subject, comment_item_id)as 'film_nazwa' FROM ".$db_prefix."comments LEFT JOIN ".$db_prefix."film ON comment_item_id=film_id WHERE comment_type='W' GROUP BY comment_id, comment_message, comment_item_id, comment_datestamp, film_id ORDER BY comment_id DESC LIMIT 0,9");
Zinterpretowano w sekund: 0.026, wykorzystano GeSHi 1.0.8.10
PW od moderatora:
- Przeniesienie tematu - Pieka 04.01 - 22:27
- Zmiana nazwy tematu - Pieka 04.01 - 22:27
Edytowane przez Joordan dnia 06.01.2010 17:51:05
|