Fixed short tags.
authorjmpoure <jmpoure>
Mon, 23 Dec 2002 10:11:37 +0000 (10:11 +0000)
committerjmpoure <jmpoure>
Mon, 23 Dec 2002 10:11:37 +0000 (10:11 +0000)
public_html/database.php
public_html/databases.php
public_html/index.php
public_html/intro.php

index ee78928246185c17c96d497bc365932e687ac09b..4ec2ea7673418083ed6d1693eebb858bfff40db8 100755 (executable)
@@ -1,22 +1,22 @@
-<?php\r
-\r
-       /**\r
-        * List databases in a server\r
-        * @param $webdbServerID The ID of the current server\r
-        *\r
-        * $Id: database.php,v 1.1 2002/09/18 17:33:01 xzilla Exp $\r
-        */\r
-\r
-       // Include application functions\r
-       include_once('../conf/config.inc.php');\r
-\r
-?>\r
-\r
-<html>\r
-<body>\r
-\r
-<h2><?= $appName ?> :: <?= $_GET['database'] ?></h2>\r
-\r
-\r
-</body>\r
-</html>\r
+<?php
+
+       /**
+        * List databases in a server
+        * @param $webdbServerID The ID of the current server
+        *
+        * $Id: database.php,v 1.2 2002/12/23 10:11:37 jmpoure Exp $
+        */
+
+       // Include application functions
+       include_once('../conf/config.inc.php');
+
+?>
+
+<html>
+<body>
+
+<h2><?php= $appName ?> :: <?php= $_GET['database'] ?></h2>
+
+
+</body>
+</html>
index 84c4d956afc817bf6e373f95674540ef9f5f3862..227640e2eefb33fb474f069f64557a5ef5884bf4 100755 (executable)
@@ -1,23 +1,23 @@
-<?php\r
-\r
-       /**\r
-        * List databases in a server\r
-        * @param $webdbServerID The ID of the current server\r
-        *\r
-        * $Id: databases.php,v 1.2 2002/02/12 01:11:58 kkemp102294 Exp $\r
-        */\r
-\r
-       // Include application functions\r
-       include_once('../conf/config.inc.php');\r
-\r
-?>\r
-\r
-<html>\r
-<body>\r
-\r
-<h1><?= $appName ?></h1>\r
-\r
-<p><?= $appIntro ?></p>\r
-\r
-</body>\r
-</html>
\ No newline at end of file
+<?php
+
+       /**
+        * List databases in a server
+        * @param $webdbServerID The ID of the current server
+        *
+        * $Id: databases.php,v 1.3 2002/12/23 10:12:18 jmpoure Exp $
+        */
+
+       // Include application functions
+       include_once('../conf/config.inc.php');
+
+?>
+
+<html>
+<body>
+
+<h1><?php= $appName ?></h1>
+
+<p><?php= $appIntro ?></p>
+
+</body>
+</html>
index 725bd53e62b6a166860a0108fd73d47cb66e6d52..693cdfa808e8f911ffff458613bce369307306b7 100755 (executable)
@@ -3,7 +3,7 @@
        /**
         * Main access point to WebDB.
         *
-        * $Id: index.php,v 1.5 2002/10/02 04:41:38 xzilla Exp $
+        * $Id: index.php,v 1.6 2002/12/23 10:13:22 jmpoure Exp $
         */
 
        // Include application functions
@@ -13,7 +13,7 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<title><?= $appName ?></title>
+<title><?php= $appName ?></title>
 </head>
 
 <frameset rows="50, *">
@@ -24,7 +24,7 @@
        </frameset>
        <noframes>
        <body>
-               <?= $strNoFrames ?>
+               <?php= $strNoFrames ?>
        </body>
        </noframes>
 </frameset>
index da9ce583d2b462095abcbfea8c954056a238e7eb..b967376c4451f72ad1e867097a3d025c03229fd5 100755 (executable)
@@ -1,25 +1,25 @@
-<?php\r
-\r
-       /**\r
-        * Intro screen\r
-        *\r
-        * $Id: intro.php,v 1.3 2002/10/02 05:05:20 xzilla Exp $\r
-        */\r
-\r
-       // Include application functions\r
-       include_once('../conf/config.inc.php');\r
-?>\r
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
-<html>\r
-<head>\r
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\r
-<title><?= $appName ?></title>\r
-</head>\r
-<body>\r
-\r
-<h1><?= $appName ?></h1>\r
-\r
-<p><?= $appIntro ?></p>\r
-\r
-</body>\r
-</html>\r
+<?php
+
+       /**
+        * Intro screen
+        *
+        * $Id: intro.php,v 1.4 2002/12/23 10:14:18 jmpoure Exp $
+        */
+
+       // Include application functions
+       include_once('../conf/config.inc.php');
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<title><?php= $appName ?></title>
+</head>
+<body>
+
+<h1><?php= $appName ?></h1>
+
+<p><?php= $appIntro ?></p>
+
+</body>
+</html>