LBF custom template (nation notes) fancybox replace.
[openemr.git] / library / custom_template / ckeditor / _samples / assets / _posteddata.php
blobe5dd668204b0d314d332f5cd1fa32737d6fc5c97
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <?php
3 /*
4 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
5 For licensing, see LICENSE.html or http://ckeditor.com/license
6 */
8 //exit since there is a known vulnerability in this script
9 exit();
12 <html xmlns="http://www.w3.org/1999/xhtml">
13 <head>
14 <title>Sample &mdash; CKEditor</title>
15 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
16 <link type="text/css" rel="stylesheet" href="sample.css" />
17 </head>
18 <body>
19 <h1 class="samples">
20 CKEditor &mdash; Posted Data
21 </h1>
22 <table border="1" cellspacing="0" id="outputSample">
23 <colgroup><col width="100" /></colgroup>
24 <thead>
25 <tr>
26 <th>Field&nbsp;Name</th>
27 <th>Value</th>
28 </tr>
29 </thead>
30 <?php
32 if ( isset( $_POST ) )
33 $postArray = &$_POST ; // 4.1.0 or later, use $_POST
34 else
35 $postArray = &$HTTP_POST_VARS ; // prior to 4.1.0, use HTTP_POST_VARS
37 foreach ( $postArray as $sForm => $value )
39 $postedValue = htmlspecialchars( $value ) ;
42 <tr>
43 <th style="vertical-align: top"><?php echo $sForm?></th>
44 <td><pre class="samples"><?php echo $postedValue?></pre></td>
45 </tr>
46 <?php
49 </table>
50 <div id="footer">
51 <hr />
52 <p>
53 CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
54 </p>
55 <p id="copy">
56 Copyright &copy; 2003-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
57 </p>
58 </div>
59 </body>
60 </html>