1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
include("showcode.php");
menulayout("innan.php","efter.php","test2.txt","Example 1: Execution of AJAX API","test.txt", "test2.txt");
$interestingrows = array(
array(1,5,"Ajax function"),
array(7,8,"Ajax return function")
);
$keywords = array(
"showCustomer",
"ResultCustomer"
);
$highlight = array(
array("{", "highlightnormal"),
array("}", "highlightnormal"),
array("function", "highlightspecial")
);
showfile($interestingrows,$keywords,$highlight, "test.txt");
menulayoutend();
?>
|