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("../DomExample2b/DomExample2b.php","../DomExample1d/DomExample1d.php","DomExample2.txt","DOM Example 5: Validation #1 (click this heading to run code)","DomExample2code.php","DomExample2.htm");
$interestingrows=array(array(10,12,"PHP Code"),array(14,15,"PHP Code"));
$keywords=array('validate();','load($file);');
$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,"DomExample2code.php");
menulayoutend();
?>
</html>
|