Projet

Général

Profil

Paste
Télécharger (1,43 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / ckeditor-4.9.2-full / samples / old / assets / posteddata.php @ b986a83e

1
<!DOCTYPE html>
2
<?php
3
/*
4
Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
5
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
6
*/
7
?>
8
<html>
9
<head>
10
        <meta charset="utf-8">
11
        <title>Sample &mdash; CKEditor</title>
12
        <link rel="stylesheet" href="sample.css">
13
</head>
14
<body>
15
        <h1 class="samples">
16
                CKEditor &mdash; Posted Data
17
        </h1>
18
        <table border="1" cellspacing="0" id="outputSample">
19
                <colgroup><col width="120"></colgroup>
20
                <thead>
21
                        <tr>
22
                                <th>Field&nbsp;Name</th>
23
                                <th>Value</th>
24
                        </tr>
25
                </thead>
26
<?php
27

    
28
if (!empty($_POST))
29
{
30
        foreach ( $_POST as $key => $value )
31
        {
32
                if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) )
33
                        continue;
34

    
35
                if ( get_magic_quotes_gpc() )
36
                        $value = htmlspecialchars( stripslashes((string)$value) );
37
                else
38
                        $value = htmlspecialchars( (string)$value );
39
?>
40
                <tr>
41
                        <th style="vertical-align: top"><?php echo htmlspecialchars( (string)$key ); ?></th>
42
                        <td><pre class="samples"><?php echo $value; ?></pre></td>
43
                </tr>
44
        <?php
45
        }
46
}
47
?>
48
        </table>
49
        <div id="footer">
50
                <hr>
51
                <p>
52
                        CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
53
                </p>
54
                <p id="copy">
55
                        Copyright &copy; 2003-2018, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
56
                </p>
57
        </div>
58
</body>
59
</html>