Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Komentarų išviso:

Parašė Kižas· 2011 Bal. 30 12:04:10
#1

Turiu kodą, kuris parodo visus nario komentarus v7 versijai:


<?php
echo"Komentarų: <strong>".number_format(dbcount("(comment_id)", DB_COMMENTS, "comment_name='".$data['user_id']."'"))."</strong>";
?>


Tačiau bandau visaip jį perdarytį v6 versijai ir vis gaunu klaidą:

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 '''' at line 1Komentarų: 0


mano perdarytas kodas v6 versijai:


<?php
echo"Komentarų: <strong>".number_format(dbcount("(comment_id)" .DB_PREFIX."comments", "comment_name='".$data['user_id']."'"))."</strong>";
?>


Kaip būtų galima ištaisyti šią klaidą ?

Parašė .Eimantas· 2011 Bal. 30 12:04:24
#2


<?php
echo"Komentarų: <strong>".number_format(dbcount("(comment_id)" , DB_PREFIX , "comments", "comment_name='".$data['user_id']."'"))."</strong>";
?>


Gal kazkas tokio?

Redagavo .Eimantas· 2011 Bal. 30 12:04:58

Parašė MaFetas· 2011 Bal. 30 13:04:52
#3


".number_format(dbcount("(comment_id)", "comments", "comment_name='".$data['user_id']."'"))."

Parašė Kižas· 2011 Bal. 30 18:04:29
#4

Mafetas, dėkui veikia tavo kodas.;)

Veikiantis kodas:


<?php
 
//$data['user_id']=1;//Testavimui rodo Super Administratoriaus komenatarų kiekį
 
echo"Komentarų: <strong>".number_format(dbcount("(comment_id)", "comments", "comment_name='".$data['user_id']."'"))."</strong>";
?>

Redagavo Kižas· 2011 Bal. 30 18:04:43