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("AjaxDemoApp3_getResources.php","AjaxDemoApp1_storeCustomer.php","AjaxDemoApp2_getCustomerBookings.txt","AJAX Example 2: List Bookings for Customer (Booking Shopping Cart)","AjaxDemoApp2_getCustomerBookings.html","AjaxDemoApp2_getCustomerBookings.htm");
$interestingrows = array(array(11,38,"Ajax function"),array(40,52,"Ajax return function"));
$keywords = array("ResultBookingCustomer","processinputbox","OutputDiv","customerID");
$highlight = array(array("{","highlightnormal"),array("}","highlightnormal"),array("function","highlightspecial"));
showfile($interestingrows,$keywords,$highlight,"AjaxDemoApp2_getCustomerBookings.html");
menulayoutend();
?>
</html>
|