Final: Делаем подарки.

This commit is contained in:
Igor Barkov [iwork] 2019-01-28 18:03:02 +02:00
parent f11c6b43a3
commit 81527a2641

View File

@ -82,20 +82,18 @@ if (!empty($_POST['present'])) {
</head>
<body>
<h1>Магазин подарков</h1>
<div><?php if (!empty($status)) ?></div>
<div><?php if (!empty($status)) echo $status; ?></div>
Вы можете сделать подарок любому персонажу. Ваш подарок будет
отображаться в информации о персонаже.<br><br>
<div>
Выберите подарок:<br>
<?php foreach ($images as $image): ?>
<label class="present">
<input type="radio" name="present" value="<?= $image ?>">
<img src="<?= $image ?>" alt="">
</label>
<?php endforeach; ?>
</div>
<div>
<form method="post">
<?php foreach ($images as $image): ?>
<label class="present">
<input type="radio" name="present" value="<?= $image ?>">
<img src="<?= $image ?>" alt="">
</label>
<?php endforeach; ?>
<input name="receiver" placeholder="Имя получателя"><br>
<textarea name="text"
rows=6 cols=80