/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to CodeViewer/codeviewer.php

This is elof changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html>
 
2
<html>
 
3
        <head>
 
4
                <link rel="stylesheet" type="text/css" href="codeviewer.css">
 
5
                <script type="text/javascript" src="codeviewer.js"></script>
 
6
        </head>
 
7
        <body>
 
8
<?php
 
9
        include("codeviewer_functions.php");
 
10
        
 
11
        menulayout("innan.php","efter.php","example_code.txt","Example 1: Execution of AJAX API","example_code.txt", "example_code_description.txt");
 
12
        
 
13
        $interestingrows = array(
 
14
                array(6,9,"Interesting row array"),
 
15
                array(11,14,"Keywords")
 
16
        );
 
17
 
 
18
        $keywords = array(
 
19
                "showCustomer",
 
20
                "ResultCustomer"
 
21
        );
 
22
 
 
23
        $highlight = array(
 
24
                array("array", "highlightnormal"),
 
25
                array("showfile", "highlightspecial")
 
26
        );
 
27
 
 
28
        showfile($interestingrows,$keywords,$highlight, "example_code.txt");
 
29
        menulayoutend();
 
30
?>
 
31
</body>
 
32
</html>