1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html>
<head>
<link rel="stylesheet" type="text/css" href="../Codeviewer/showcode.css">
<script language="javascript" " src="../Codeviewer/showcode.js"></script>
</head>
<?php
include("../Codeviewer/showcode.php");
menulayout("AjaxDemoApp4_getBookingsForDate.php","AjaxDemoApp2_getCustomerBookings.php","AjaxDemoApp3_getResources.txt","AJAX Example 3: List Resources (Resource Search)","AjaxDemoApp3_getResources.html","AjaxDemoApp3_getResources_description.html");
$interestingrows = array(array(9,32,"Ajax return function"));
$keywords = array("showResources","searchResources","OutputDiv","resFulltext");
$highlight = array(array("{","highlightnormal"),array("}","highlightnormal"),array("function","highlightspecial"));
showfile($interestingrows,$keywords,$highlight,"AjaxDemoApp3_getResources.html");
menulayoutend();
?>
</html>
|