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("AjaxDemoApp7_makeBookingsTimer.php","AjaxDemoApp5_showBookings.php","AjaxDemoApp6_makeBookings.txt","AJAX Example 6: Make Bookings","AjaxDemoApp6_makeBookings.html","AjaxDemoApp6_makeBookings.htm");
$interestingrows=array(array(18,42,"Make Booking"),array(28,31,"Ajax return function"),array(55,86,"Ajax return function"));
$keywords=array("resultSize","drawResult","resultBooking","processinputbox","OutputDiv","bookPosition");
$highlight=array(array("{","highlightnormal"),array("}","highlightnormal"),array("function","highlightspecial"));
showfile($interestingrows,$keywords,$highlight,"AjaxDemoApp6_makeBookings.html");
menulayoutend();
?>
</html>
|