github.com/jincm/wesharechain@v0.0.0-20210122032815-1537409ce26a/app/lib/plupload-2.1.2/examples/dump.php (about)

     1  <!DOCTYPE html>
     2  <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
     3  <head>
     4  <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
     5  <title>Plupload - Form dump</title>
     6  </head>
     7  <body style="font: 13px Verdana; background: #eee; color: #333">
     8  	
     9  <h1>Post dump</h1>
    10  
    11  <p>Shows the form items posted.</p>
    12  
    13  <table>
    14  	<tr>
    15  		<th>Name</th>
    16  		<th>Value</th>
    17  	</tr>
    18  	<?php $count = 0; foreach ($_POST as $name => $value) { ?>
    19  	<tr class="<?php echo $count % 2 == 0 ? 'alt' : ''; ?>">
    20  		<td><?php echo htmlentities(stripslashes($name)) ?></td>
    21  		<td><?php echo nl2br(htmlentities(stripslashes($value))) ?></td>
    22  	</tr>
    23  	<?php } ?>
    24  </table>
    25  
    26  </body>
    27  </html>