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("AjaxDemoApp9_makeClick.php","AjaxDemoApp7_makeBookingsTimer.php","AjaxDemoApp8_getResourceAvailability.txt","AJAX Example 8: Show Resource Availability","AjaxDemoApp8_getResourceAvailability.html","AjaxDemoApp8_getResourceAvailability.htm");
$interestingrows=array(array(12,33,"Make Booking"),array(35,50,"Ajax return function"));
$keywords=array("resultSize","ResultAvailability","resultBooking","processinputbox","OutputDiv","bookPosition");
$highlight=array(array("{","highlightnormal"),array("}","highlightnormal"),array("function","highlightspecial"));
showfile($interestingrows,$keywords,$highlight,"AjaxDemoApp8_getResourceAvailability.html");
menulayoutend();
?>
</html>
|