View previous topic :: View next topic |
Author |
Message |
GamerZ
Joined: 15 May 2002 Posts: 537 Location: Singapore
|
Posted: Tue Oct 08, 2002 3:24 pm Post subject: |
|
|
plazz2000 wrote: | Another simple fix:
in b2wap_content.php you have
The > and < signs are one of the weird characters I talked about, replace them with > and < respectively.
So you should use : | Hehe thanks do you know where to find all these special characters to repalce with? _________________
++ GamerZ.Per.Sg - Complex Simplicity |
|
Back to top |
|
 |
plazz2000
Joined: 01 Apr 2002 Posts: 40 Location: Cork, Ireland
|
Posted: Tue Oct 08, 2002 5:12 pm Post subject: |
|
|
Code: |
"
"
&
&
<
<
>
>
©
©
®
®
´
´
«
«
»
»
¡
¡
¿
¿
À
À
à
à
Á
Á
á
á
Â
Â
â
â
Ã
Ã
ã
ã
Ä
Ä
ä
ä
Å
Å
å
å
Æ
Æ
æ
æ
Ç
Ç
ç
ç
Ð
Ð
ð
ð
È
È
è
è
É
É
é
é
Ê
Ê
ê
ê
Ë
Ë
ë
ë
Ì
Ì
ì
ì
Í
Í
í
í
Î
Î
î
î
Ï
Ï
ï
ï
Ñ
Ñ
ñ
ñ
Ò
Ò
ò
ò
Ó
Ó
ó
ó
Ô
Ô
ô
ô
Õ
Õ
õ
õ
Ö
Ö
ö
ö
Ø
Ø
ø
ø
Ù
Ù
ù
ù
Ú
Ú
ú
ú
Û
Û
û
û
Ü
Ü
ü
ü
Ý
Ý
ý
ý
ÿ
ÿ
Þ
Þ
þ
þ
ß
ß
§
§
¶
¶
µ
µ
¦
¦
±
±
·
·
¨
¨
¸
¸
ª
ª
º
º
¬
¬
¯
¯
°
°
¹
¹
²
²
³
³
¼
¼
½
½
¾
¾
×
×
÷
÷
¢
¢
£
£
¤
¤
¥
¥ |
|
|
Back to top |
|
 |
yuchy
Joined: 22 Jun 2003 Posts: 28
|
Posted: Sun Jun 22, 2003 6:02 am Post subject: |
|
|
i was reading up on the blogger API interface....apparently there's no provision to edit/view comments. is there a way to get by this by creating a b2comments WAP page or something like that?
i.e. is there a way to see the comments on your post with b2wap?
i am tearing my hair out trying to find a way. would adding comments in the rss feed help? |
|
Back to top |
|
 |
sayiklamalar
Joined: 23 Apr 2003 Posts: 5 Location: Turkey
|
Posted: Sat Jul 17, 2004 12:40 am Post subject: help help! author name before title |
|
|
i want to show author name in first page before title. but i couldn't.
"b2posts" table has only post_author and user_nickname colomn is in "b2users" table. i try to write a code like this
Quote: |
<?
$result = mysql_query("SELECT ID, DATE_FORMAT(post_date, '%d.%m.%y'), post_author, post_title FROM b2posts ORDER BY post_date DESC LIMIT 5");
while(list($ID, $date, $author, $title) = mysql_fetch_row($result)) {
echo "<a href=\"b2wap_content.php?p=$ID&more=1\">$date - $title - $author</a><br />\n";
$user_id=$author;
}
$sonuc = mysql_query("SELECT user_nickname FROM b2users where ID=$user_id");
while(list($user) = mysql_fetch_row($sonuc)) {
echo "<a href=\"b2wap_content.php?p=$ID&more=1\">$user</a><br />\n";
}
echo "</p>\n";
?>
|
but it didn't work. cause Quote: | $author_id=$author; | is not in the while loop. so one $user result appears in.
can anyone help me? |
|
Back to top |
|
 |
|