Вход Регистрация
Файл: module-assets/admin/plupload/examples/dump.php
Строк: 19
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Plupload - Form dump</title>
<style type="text/css">
    body {
        font-family:Verdana, Geneva, sans-serif;
        font-size:13px;
        color:#333;
        background:url(bg.jpg);
    }
</style>
</head>
<body>

<h1>Post dump</h1>

<p>Shows the form items posted.</p>

<table>
    <tr>
        <th>Name</th>
        <th>Value</th>
    </tr>
    <?php $count 0; foreach ($_POST as $name => $value) { ?>
    <tr class="<?php echo $count == 'alt' ''?>">
        <td><?php echo htmlentities(stripslashes($name)) ?></td>
        <td><?php echo nl2br(htmlentities(stripslashes($value))) ?></td>
    </tr>
    <?php ?>
</table>

</body>
</html>
Онлайн: 2
Реклама