32 lines
778 B
PHP
32 lines
778 B
PHP
<?php
|
|
|
|
|
|
$sql = "SELECT
|
|
`value`
|
|
FROM
|
|
`VokabelBox2Content`
|
|
WHERE
|
|
`id` = '$list'";
|
|
$result_articles = $conn->query($sql);
|
|
while ($articleDb = mysqli_fetch_object($result_articles))
|
|
{
|
|
$value = $articleDb->value;
|
|
}
|
|
|
|
?>
|
|
<div class="fixed-title">
|
|
<h2>Liste löschen</h2>
|
|
</div>
|
|
|
|
<div class="fixed-title-spacer">
|
|
<div class="folder-view-wrapper">
|
|
<div class="form">
|
|
<h2>Folgende Liste wird gelöscht:</h2>
|
|
<h4><?php echo $value; ?></h4>
|
|
<h6 align="center">Gelöschte Listen können <u>nicht</u> wiederhergestellt werden!</h6>
|
|
<br>
|
|
<button onclick="getContent('action:listDelete','','scrollLeft')" class="default-button">Löschen</button>
|
|
</div>
|
|
</div>
|
|
</div>
|