1
0
Fork 0
MySQLDumper/inc/footer.php

15 Zeilen
1.0 KiB
PHP

<p align="center" class="small">
Autoren:
<a class="small" href="http://www.daniel-schlichtholz.de" target="_new">
Daniel Schlichtholz & Steffen Kamper</a> - Infoboard:
<a class="small" href="<?php echo $config["homepage"]; ?>" target="_new">
<?php echo $config["homepage"].'</a></p>';
$svice=(isset($_GET["svice"])) ? $_GET["svice"] : 0;
$config_array=(isset($config)) ? "<strong>CONFIG</strong><pre>".print_r($config,true)."</pre>": "";
$database_array=(isset($database)) ? "<strong>DATABASE</strong><pre>".print_r($database,true)."</pre>": "";
$dump_array=(isset($dump)) ? "<strong>DUMP</strong><pre>".print_r($dump,true)."</pre>": "";
$restore_array=(isset($restore)) ? "<strong>RESTORE</strong><pre>".print_r($restore,true)."</pre>" : "";
if($svice==1) echo '<table width="100%"><tr bgcolor="#808080"><td>'.$config_array.'</td></tr><tr bgcolor="#808080"><td>'.$database_array.'</td></tr><tr bgcolor="#808080"><td>'.$dump_array.'</td></tr><tr bgcolor="#808080"><td>'.$restore_array.'</td></tr></table>';
echo '</BODY></HTML>';
?>