SQL查询加载数字数据作为值:设置html输入为数字不允许它,将html输入设置为文本允许它

Am wondering what may solve a problem involving a form to update data saved in a row of my table. The query work fine with all of the other data excluding a number decimal, here’s the commands:

<div>
    <label>money</label>
    <input name="name_money" type="number" min="0.00" step="0.01" placeholder="€ 0,00" value="<?php $row['money'];?>"/>
</div>

What seems me really strange is that it does not load only if I set the type=”number” while, to have a test, I can correctly see setting type=”text” – by the way can not use this option since it trigger the decimal.

Does some one have any idea or suggestion to solve this issue?