سلام دوستان ، وقتی میخوام دستور زیر
$query = mysql_query("SELECT comments FROM comments ORDER BY id ASC LIMIT $start, $settingpageditem")
or die(mysql_error());
رو تغییر بدم و به صورت زیر استفاده بکنم :
$query = mysql_query("SELECT comments where idpost=$idpost FROM comments ORDER BY id ASC LIMIT $start, $settingpageditem ")
or die(mysql_error());
با اروری به این صورت برخورد میکنم :
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 'where idpost=16 FROM comments ORDER BY id ASC LIMIT 0, 2' at line 1
پس در کل من میخوام دستور where idpost=$idpost رو در اون دستور اول بکار ببرم ، ممکنه کمک اَم کنید ؟؟