I have many text area in one page I get them by a link called "comment" so her is the idea I made a code in php that includes a form when the user clicks on "comment" this is an Ex.
now when the user clicks on comment it just includes the comment text area but here there is more then one threads on the same page or I can say more then one post on the same page so when the user clicks on "comment" on post one all the other posts get the text area below it. what I need here is when the user clicks comment on post "1" the text area appear below post "1" and not 2 or 3 or any other one on this page. I hope I got you to the point that I want.
Code:
if(isset($_GET['comments'])) { $comments = $_GET['comments']; } if (!isset($_GET['comments'])) { $comments = ""; } if ($comments == "ok") {
echo "<tr><td colspan='6' align='center'>";
echo "<span class='rePost'>Re : </span><span
class='blogerName'>$blog->ByName"; include "postComments.php"; echo "";
} ?>
Comment