Как добавить данные в функцию кнопки
У меня есть цикл:
<?php for ($id = 0; $id < $style['count']; $id++):?>
<tr>
<th scope="row" class="text-center id-style">
<?php echo $style['arraystyle'][$id]['id'];?>
</th>
<td><input class="form-control" autocomplete="off" value="<?php echo $style['arraystyle'][$id]['name'];?>" type="text"></td>
<td class="text-center">
<button type="button" class="btn btn-outline-secondary" onclick="styleEdit()">Изменить</button>
</td>
</tr>
<?php endfor;?>
Как мне в функцию styleEdit() передать данные из th и td что бы дальше проводить манипуляции?