1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!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>
|