Делаем подарки

This commit is contained in:
Igor Barkov [iwork] 2019-01-28 15:24:36 +02:00
parent 1e313fef33
commit 5834b58783

View File

@ -98,7 +98,7 @@ if (!empty($_POST['present'])) {
<label><input type=radio name=from value=1> анонимно</label><br>
<label><input type=radio name=from value=2> от имени клана</label><br>
Долговечность подарка (5кр в день):<br>
<input type="number" name="days" placeholder="Количество дней">
<input name="days" onkeyup="calc()" placeholder="Количество дней"> Цена: <span id="price"></span>
<p>
<button>Подарить</button>
@ -137,5 +137,11 @@ if (!empty($_POST['present'])) {
</td>
</tr>
</table>
<script>
function calc() {
var num = document.getElementById("days").value;
document.getElementById("price").innerHTML = num * 5;
}
</script>
</body>
</html>