aboutsummaryrefslogtreecommitdiffstats
path: root/test.php
diff options
context:
space:
mode:
Diffstat (limited to 'test.php')
-rw-r--r--test.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/test.php b/test.php
new file mode 100644
index 0000000..354a94f
--- /dev/null
+++ b/test.php
@@ -0,0 +1,29 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="content-type" content="text/html;charset=utf-8">
+<link rel="stylesheet" type="text/css" href="/css/style.css">
+<link rel="stylesheet" type="text/css" href="/css/table.css">
+<title></title>
+</head>
+<body>
+<a href="add.php" class="stb">Add Record</a><br><br><br>
+<?php
+include '/home/kb0iic/config.inc';
+
+$name = '$_POST[Pkgname]';
+
+$sql = 'SELECT id, seq, name, version, configure, build, install, setup, notes, url FROM PKG, PKG_CFG, PKG_BLD, PKG_NST, PKG_SET, PKG_NOT, PKG_URL WHERE PKG_CFG.pkg_id = PKG.id AND PKG_BLD.pkg_id = PKG.id AND PKG_NST.pkg_id = PKG.id AND PKG_SET.pkg_id = PKG.id AND PKG_NOT.pkg_id = PKG.id AND PKG_URL.pkg_id = PKG.id ORDER BY seq ASC';
+
+ $stmt = $pdo->prepare($sql);
+ $stmt->execute();
+echo 'test';
+?>
+<!--- w3c tag -->
+<p align="right">
+<a href="http://validator.w3.org/check?uri=referer"><img
+src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01 Transitional" height="31" width="88"></a>
+</p>
+<!-- end w3c tag -->
+</body>
+</html>