Hi to all,
it’s been a few days I am trying to make a php/html form that is asking me the date(from date picker), my weight number, my waist number and my burned calories number. All these to be added to a database table I have created already. The numbers may have a comma/point for example I may weight 86.4 or 86,4 kg.
I have also created the columns.
I tried to follow some online examples but I don’t have the time anymore. What is the best thing to do;
Thank you in advance for any replies.
mysql> DESCRIBE fitness;
+----------+---------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+---------+------+-----+---------+-------+
| date | date | YES | | NULL | |
| weight | int(11) | YES | | NULL | |
| waist | int(11) | YES | | NULL | |
| calories | int(11) | YES | | NULL | |
+----------+---------+------+-----+---------+-------+