Is it possible to pass my unique $comment->comment_id; to another php file? I want to have the same id for the li for that input button. when is clicked I want to pass the variable to the php "/model/editComment.php".
<div class="comment-buttons-holder">
<ul class="comment-buttons-holder-ul">
<li id="<?php $comment->comment_id; ?>" class="edit-btn">
<form action ="/model/editComment.php" method="POST">
<input>" type="submit" value="edit">
</form>
</li>
</ul
Blockquote
</div>