|
Revision 1
(checked in by mipalmer, 2 years ago)
|
--
|
| Line | |
|---|
| 1 |
<?PHP |
|---|
| 2 |
include("include/session.php"); |
|---|
| 3 |
?> |
|---|
| 4 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" > |
|---|
| 5 |
<html> |
|---|
| 6 |
<head> |
|---|
| 7 |
<title>View SQL</title> |
|---|
| 8 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
|---|
| 9 |
<link href="common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css"> |
|---|
| 10 |
</head> |
|---|
| 11 |
<body> |
|---|
| 12 |
<div class="bodyline" style="padding:+4px;"> |
|---|
| 13 |
<h1>SQL Statement</h1> |
|---|
| 14 |
<div class="box"><code><?php echo stripslashes(htmlspecialchars($_SESSION["thequerystatement"])) ?></code></div> |
|---|
| 15 |
<?php if($_SESSION["sqlerror"]) {?> |
|---|
| 16 |
<h1>SQL Error</h1> |
|---|
| 17 |
<div class="box"><?php echo $_SESSION["sqlerror"]?></div> |
|---|
| 18 |
<?php } ?> |
|---|
| 19 |
<div align="right" class="recordbottom"> |
|---|
| 20 |
<input name="Button" type="button" class="Buttons" value="done" onClick="window.close()" style="width:75px"> |
|---|
| 21 |
</div> |
|---|
| 22 |
</div> |
|---|
| 23 |
</body> |
|---|
| 24 |
</html> |
|---|
| 25 |
|
|---|