I have a friend with a dinner and he wants to take his iphone and add up how many drinks are being had by each specific person at the bar and store them with date stamps while adding how many drinks they have had total in the life of their account. How do I create form for this, with the add +1 button instead of typing a number?
<form action="store_table.php" method="post" >
<p><b>Person Name</b></br>
<input type="text" name"user" size="10" maxlength="2"/></p>
<!--Is this right?-->
<p><b>How Many Drinks?</b></br>
<input type="button" name"drinks" size="10" value="+1"/></p>
<!--If I hit the button twice will I get a value of 2-->
<p><b>Done</b></br>
<input type="submit" name"Submit" vaule="Submit"/></p>