Есть форма:
<form action="" method="POST">
<div class="uk-margin">
TITLE <input type="text" class="uk-input uk-form-width-large" name="title_2" value="<?php echo $art['title']; ?>">
IMG <input type="text" class="uk-input uk-form-width-small" name="img_2" value="<?php echo $art['img']; ?>">
PLACE <input type="text" class="uk-input uk-form-width-small" name="place_2" value="<?php echo $art['place_of_location']; ?>">
<button class="uk-button uk-button-primary" type="submit" name="change">Изменить</button>
</div>
</form>
Как по кнопке передать уникальный параметр, желательно через post если возможно.
Параметр типа $id['id']; Т.е. уникальный.
Хочу чтоб у каждой кнопке был уникальный идентификатор, как такое сделать?