Feature request #700205
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2003-03-09 Garvin Hicking <me@supergarv.de>
|
||||||
|
* db_printview.php3: Added print button (#700205)
|
||||||
|
|
||||||
2003-03-08 Marc Delisle <lem9@users.sourceforge.net>
|
2003-03-08 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/transformations/*.sh: did not work in bash
|
* libraries/transformations/*.sh: did not work in bash
|
||||||
|
|
||||||
|
@@ -258,5 +258,22 @@ else {
|
|||||||
* Displays the footer
|
* Displays the footer
|
||||||
*/
|
*/
|
||||||
echo "\n";
|
echo "\n";
|
||||||
|
?>
|
||||||
|
<script type="text/javascript" language="javascript1.2">
|
||||||
|
<!--
|
||||||
|
function printPage()
|
||||||
|
{
|
||||||
|
document.all.print.style.visibility = 'hidden';
|
||||||
|
// Do print the page
|
||||||
|
if (typeof(window.print) != 'undefined') {
|
||||||
|
window.print();
|
||||||
|
}
|
||||||
|
document.all.print.style.visibility = '';
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<?php
|
||||||
|
echo '<br /><br /> <input type="button" style="visibility: ; width: 100px; height: 25px" name="print" value="' . $strPrint . '" onclick="printPage()">' . "\n";
|
||||||
|
|
||||||
require('./footer.inc.php3');
|
require('./footer.inc.php3');
|
||||||
?>
|
?>
|
||||||
|
Reference in New Issue
Block a user