📄 showgalaxyselector.php
字号:
<?php
/**
* ShowGalaxySelector.php
*
* @version 1.0
* @copyright 2008 By Chlorel for XNova
*/
function ShowGalaxySelector ( $Galaxy, $System ) {
global $lang;
if ($Galaxy > 9) {
$Galaxy = 9;
}
if ($Galaxy < 1) {
$Galaxy = 1;
}
if ($System > 499) {
$System = 499;
}
if ($System < 1) {
$System = 1;
}
$Result = "<form action=\"galaxy.php?mode=1\" method=\"post\" id=\"galaxy_form\">";
$Result .= "<input type=\"hidden\" id=\"auto\" value=\"dr\" >";
$Result .= "<table border=\"0\">";
$Result .= "<tbody><tr><td>";
$Result .= "<table><tbody><tr>";
$Result .= "<td class=\"c\" colspan=\"3\">". $lang['Galaxy'] ."</td></tr><tr>";
$Result .= "<td class=\"l\"><input name=\"galaxyLeft\" value=\"<-\" onclick=\"galaxy_submit('galaxyLeft')\" type=\"button\"></td>";
$Result .= "<td class=\"l\"><input name=\"galaxy\" value=\"". $Galaxy ."\" size=\"5\" maxlength=\"3\" tabindex=\"1\" type=\"text\"></td>";
$Result .= "<td class=\"l\"><input name=\"galaxyRight\" value=\"->\" onclick=\"galaxy_submit('galaxyRight')\" type=\"button\"></td>";
$Result .= "</tr></tbody></table>";
$Result .= "</td><td>";
$Result .= "<table><tbody><tr>";
$Result .= "<td class=\"c\" colspan=\"3\">". $lang['Solar_system'] ."</td></tr><tr>";
$Result .= "<td class=\"l\"><input name=\"systemLeft\" value=\"<-\" onclick=\"galaxy_submit('systemLeft')\" type=\"button\"></td>";
$Result .= "<td class=\"l\"><input name=\"system\" value=\"". $System ."\" size=\"5\" maxlength=\"3\" tabindex=\"2\" type=\"text\"></td>";
$Result .= "<td class=\"l\"><input name=\"systemRight\" value=\"->\" onclick=\"galaxy_submit('systemRight')\" type=\"button\"></td>";
$Result .= "</tr></tbody></table>";
$Result .= "</td>";
$Result .= "</tr><tr>";
$Result .= "<td class=\"l\" colspan=\"2\" align=\"center\"> <input value=\"". $lang['Afficher'] ."\" type=\"submit\"></td>";
$Result .= "</tr>";
$Result .= "</tbody></table>";
$Result .= "</form>";
return $Result;
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -