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","","AJAX Example 10: Get Click","AjaxDemoApp10_getClicks.html","AjaxDemoApp10_getClicks.htm");
$interestingrows = array(array(44,52,"Make Booking"));
$keywords = array("resultSize","drawResult","resultBooking","processinputbox","OutputDiv","bookPosition","resource","bookingdate");
$highlight = array(array("{","highlightnormal"),array("}","highlightnormal"),array("function","highlightspecial"));
showfile($interestingrows,$keywords,$highlight,"AjaxDemoApp10_getClicks.html");
menulayoutend();
?>
</html>
|