mirror of
https://github.com/vrana/adminer.git
synced 2026-01-02 22:00:43 +01:00
Syntax highlighting
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@124 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
12
sql.inc.php
12
sql.inc.php
@@ -1,4 +1,8 @@
|
||||
<?php
|
||||
if (isset($_POST["query"])) {
|
||||
$_SESSION["highlight"] = $_POST["highlight"];
|
||||
}
|
||||
|
||||
page_header(lang('SQL command'));
|
||||
|
||||
if ($_POST && $error) {
|
||||
@@ -45,7 +49,13 @@ if ($_POST && $error) {
|
||||
|
||||
<form action="" method="post">
|
||||
<p><textarea name="query" rows="20" cols="80"><?php echo htmlspecialchars($_POST["query"]); ?></textarea></p>
|
||||
<p><input type="hidden" name="token" value="<?php echo $token; ?>" /><input type="submit" value="<?php echo lang('Execute'); ?>" /></p>
|
||||
<p>
|
||||
<input type="hidden" name="token" value="<?php echo $token; ?>" />
|
||||
<input type="submit" value="<?php echo lang('Execute'); ?>" />
|
||||
<script type="text/javascript">
|
||||
document.write('<label for="highlight"><input type="checkbox" name="highlight" id="highlight" value="jush"<?php echo ($_SESSION["highlight"] == "jush" ? ' checked="checked"' : ''); ?> /><?php echo addcslashes(lang('Syntax highlighting'), "\r\n'\\"); ?></label>');
|
||||
</script>
|
||||
</p>
|
||||
</form>
|
||||
|
||||
<?php
|
||||
|
||||
Reference in New Issue
Block a user