I want to print out the id of the button I pressed. The id is set dynamically for each button in a table. This is my HTML code:
echo '<td><center><input type="submit" id="'.$row['I_ID'].'" class="btn"
name="Add" value ="Add to cart"><center></td><tr>';
And I want to print the id of the button here. An suggestions? Thanks.
if (isset($_POST['Add'])) {
$ID = $_GET['id'];
echo $ID;
echo '<br/>' . "* The item has been added to your cart.";
}
