while($row = mysqli_fetch_array($sql)){
echo '<td>
<img src="'.$row['image'].'"><br/>
<form method="post" action="edit-record.php">
<input type="text" name="imgID" value="'.$row['id'].'">
<input type="submit" value="Edit" id="edit_btn" class="admin_btn">
</form>
</td>';
}
i edit-record.php...
<?php
echo $_POST['imgID'];
?>
Det finns ingen anledning till att din kod tekniskt sett inte skulle fungera men istället kan du bara ta bort formuläret och använda en enkel länk...
while($row = mysqli_fetch_array($sql)){
echo '<td>
<img src="'.$row['image'].'"><br/>
<a href="edit-record.php?id='.$row['id'].'">edit</a>
</td>';
}
och i edit-record.php...
<?php
echo $_GET['id'];
?>