diff options
author | William Harrington <kb0iic@berzerkula.org> | 2019-02-12 15:58:25 -0600 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2019-02-12 15:58:25 -0600 |
commit | 33711d5696861d734f784d089f30205aef06b852 (patch) | |
tree | 32b3ef42acc9c0d90fa12a952609d17ba7245b13 | |
parent | 3b5a092df12e386624414f32962bfd500fbabcbb (diff) |
Remove test.
-rw-r--r-- | A8_srv_build/test.php | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/A8_srv_build/test.php b/A8_srv_build/test.php deleted file mode 100644 index a7fc5ff..0000000 --- a/A8_srv_build/test.php +++ /dev/null @@ -1,29 +0,0 @@ -<!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 '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> |