1
I have a table in my Mysql of time products, example:
Table Processes
id - description - time
01 - Drilling - 0:01:50
Example if I have to manufacture a part that has 5 holes, I have to multiply quantity by time.
echo $tempo * 5;
the variable $tempo
, is caught in the processes table.
But get back to me 0, instead of returning 0:09:10 What is wrong ?
Thanks Everson , no mysql da for my process, because one part has 5 holes, other has none, other has more than 1000 holes.
– Junior