OK, I have to get a MySQL result to be narrowed down and I have $result=blah blah blah and all that. Actually this is what I have so far for that one thing.
$result=mysql_query("SELECT * FROM comments WHERE id=$id ORDER BY id DESC");
BUT where it says WHERE id=$id I need another one like section=$section. AND wouldnt work along with && or &. How do I do this so its somethign like this:
$result=mysql_query("SELECT * FROM tute_comments WHERE tute_id=$id AND section=$section ORDER BY id DESC");