the following code is in loop of variable $name;
I want to collect $_POST['comment'] value for particular variable $name when submit button hit.
I want to collect $_POST['comment'] value for particular variable $name when submit button hit.
Code:
<input type="hidden" name="name" value="<?php echo $name; ?>" /> <textarea name="Comment"> </textarea> <input type="submit" name="submit" value="Add Comment" style="margin-left: 225px;"/>
Comment