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ą ?