I have a table in my MySQL of products with time, example:
Processes table
id - descrision - Time
01 - Piercing - 0:01:50
Example if I have to make a part that has 5 holes, I have to multiply quantity by time.
echo $tempo * 5;
The variable $tempo
, gets caught in the processes table.
But it returns me 0 , instead of returning 0:09:10 What's wrong?