while($row = mysqli_fetch_assoc($rs)){
echo "<tr>";
echo "<td>". $row['coffee_name'] . "</td>";
echo "<td>$" . $row['coffee_price'] . "</td>";
echo "<td><input type='text' size='2' name='".$row['coffee_sku']."' value='" . $row['quantity'] . "'></td>";
echo "</tr>";
}Now my question is how do I access these quantities after the user hits the "Update Quantities" submit button.I tried something like the follwing:
$quantity = $_POST($row['sku']);


Sign In
Create Account


Back to top









