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("../DomExample1b/DomExample1b.php","","DomExample1.txt","DOM Example 1: Initiation and simple navigation (click this heading to run code)","DomExample1code.php","DomExample1.htm");
$interestingrows=array(array(8,10,"PHP Code"),array(12,17,"PHP Code"));
$keywords=array('getElementsByTagName','tagName','childNodes','nodeValue','documentElement');
$highlight=array(array("{","highlightnormal"),array("}","highlightnormal"),array("function","highlightspecial"),array("<?php","highlightspecial"),array("?>","highlightspecial"),array("echo","highlightspecial"),array("if","highlightspecial"),array("else","highlightspecial"),array("foreach","highlightspecial"));
showfile($interestingrows,$keywords,$highlight,"DomExample1code.php");
menulayoutend();
?>
</html>
|