1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<html>
<head>
<link rel="stylesheet" type="text/css" href="showcode.css">
<script language="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>
|