1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<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("AjaxDemoApp2_getCustomerBookings.php","AjaxDemoApp0_getCustomer.php","AjaxDemoApp1_storeCustomer.txt","AJAX Example 1: Creation of Customer","AjaxDemoApp1_storeCustomer.html","AjaxDemoApp1_storeCustomer.htm");
$interestingrows=array(array(7,26,"Ajax function"),array(28,36,"Ajax return function"));
$keywords=array("makeCustomer","storeCustomer","ResultCustomer","customerID");
$highlight=array(array("{","highlightnormal"),array("}","highlightnormal"),array("function","highlightspecial"));
showfile($interestingrows,$keywords,$highlight,"AjaxDemoApp1_storeCustomer.html");
menulayoutend();
?>
</body>
</html>
|