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("","../DomExample3/DomExample3.php","DomExample3b.txt","DOM Example 11: XPATH #2 (click this heading to run code)","DomExample3bcode.php","DomExample3b.htm");
$interestingrows=array(array(20,25,"PHP Code"));
$keywords=array('saveXML','loadXML','DOMXPath','query');
$highlight=array(array("{","highlightnormal"),array("}","highlightnormal"),array("function","highlightspecial"),array("<?php","highlightspecial"),array("?>","highlightspecial"),array("echo","highlightspecial"),array("if","highlightspecial"),array("else","highlightspecial"));
showfile($interestingrows,$keywords,$highlight,"DomExample3bcode.php");
menulayoutend();
?>
</html>
|