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
31
32
33
34
35
36
37
38
39
40
41
42
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="showcode.css">
<script type="text/javascript" src="showcode.js"></script>
</head>
<body>
<?php
include("showcode.php");
menulayout("innan.php","efter.php","test.txt","Example 1: Execution of AJAX API","Ponyo.txt");
$interestingrows = array(
array(16,21,"Ajax function"),
array(23,37,"Ajax return function")
);
$keywords = array(
"showCustomer",
"ResultCustomer"
);
$highlight = array(
array(
"{",
"highlightnormal"
),
array(
"}",
"highlightnormal"
),
array(
"function",
"highlightspecial"
)
);
showfile($interestingrows,$keywords,$highlight);
menulayoutend();
?>
</body>
</html>
|