Update of /cvsroot/firebug/firebug/web
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7422
Modified Files:
db_admin.php
Added Files:
results.php
Log Message:
.
--- NEW FILE: results.php ---
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Results demo script</title>
<link rel="SHORTCUT ICON" href="./images/favicon.ico">
<link type="text/css" rel="stylesheet" href="firebug.css">
</head>
<body>
<h1>Demonstration monitoring</h1>
<?php
// The following is a system call.
`D:\cygwin\bin\gnuplot.exe < test.gnu`;
?>
<img src="../imagetest/test.png">
<hr />
<p>
Last Updated: $Date: 2004/02/10 15:26:27 $
by $Author: doolin $.
</p>
</body>
</html>
Index: db_admin.php
===================================================================
RCS file: /cvsroot/firebug/firebug/web/db_admin.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** db_admin.php 21 May 2003 21:58:15 -0000 1.4
--- db_admin.php 10 Feb 2004 15:26:27 -0000 1.5
***************
*** 34,41 ****
--- 34,49 ----
<hr />
+
<?php
+
+
+ //$string = system("D:\cygwin\bin\gnuplot.exe < test.gnu");
+ `D:\cygwin\bin\gnuplot.exe < test.gnu`;
include("nav_footer.php");
?>
+ <!-- -->
+ <img src="../imagetest/test.png">
+ <!-- -->
<hr />
|