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