1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4 Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
5 For licensing, see LICENSE.html or http://ckeditor.com/license
8 <html xmlns="http://www.w3.org/1999/xhtml">
10 <title>Sample — CKEditor</title>
11 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
12 <link type="text/css" rel="stylesheet" href="sample.css" />
16 CKEditor — Posted Data
18 <table border="1" cellspacing="0" id="outputSample">
19 <colgroup><col width="120" /></colgroup>
22 <th>Field Name</th>
30 foreach ( $_POST as $key => $value )
32 if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) )
35 if ( get_magic_quotes_gpc() )
36 $value = htmlspecialchars( stripslashes((string)$value) );
38 $value = htmlspecialchars( (string)$value );
41 <th style="vertical-align: top"><?php echo htmlspecialchars( (string)$key ); ?></th>
42 <td><pre class="samples"><?php echo $value; ?></pre></td>
52 CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
55 Copyright © 2003-2013, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.