~ubuntu-branches/ubuntu/utopic/codemirror-js/utopic

« back to all changes in this revision

Viewing changes to mode/php/index.html

  • Committer: Package Import Robot
  • Author(s): David Paleino
  • Date: 2012-04-12 12:25:28 UTC
  • Revision ID: package-import@ubuntu.com-20120412122528-8xp5a8frj4h1d3ee
Tags: upstream-2.23
ImportĀ upstreamĀ versionĀ 2.23

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!doctype html>
 
2
<html>
 
3
  <head>
 
4
    <title>CodeMirror: PHP mode</title>
 
5
    <link rel="stylesheet" href="../../lib/codemirror.css">
 
6
    <script src="../../lib/codemirror.js"></script>
 
7
    <script src="../xml/xml.js"></script>
 
8
    <script src="../javascript/javascript.js"></script>
 
9
    <script src="../css/css.js"></script>
 
10
    <script src="../clike/clike.js"></script>
 
11
    <script src="php.js"></script>
 
12
    <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
 
13
    <link rel="stylesheet" href="../../doc/docs.css">
 
14
  </head>
 
15
  <body>
 
16
    <h1>CodeMirror: PHP mode</h1>
 
17
 
 
18
<form><textarea id="code" name="code">
 
19
<?php
 
20
function hello($who) {
 
21
        return "Hello " . $who;
 
22
}
 
23
?>
 
24
<p>The program says <?= hello("World") ?>.</p>
 
25
<script>
 
26
        alert("And here is some JS code"); // also colored
 
27
</script>
 
28
</textarea></form>
 
29
 
 
30
    <script>
 
31
      var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
 
32
        lineNumbers: true,
 
33
        matchBrackets: true,
 
34
        mode: "application/x-httpd-php",
 
35
        indentUnit: 4,
 
36
        indentWithTabs: true,
 
37
        enterMode: "keep",
 
38
        tabMode: "shift"
 
39
      });
 
40
    </script>
 
41
 
 
42
    <p>Simple HTML/PHP mode based on
 
43
    the <a href="../clike/">C-like</a> mode. Depends on XML,
 
44
    JavaScript, CSS, and C-like modes.</p>
 
45
 
 
46
    <p><strong>MIME types defined:</strong> <code>application/x-httpd-php</code> (HTML with PHP code), <code>text/x-php</code> (plain, non-wrapped PHP code).</p>
 
47
  </body>
 
48
</html>