mirror of
https://github.com/fspc/biketree.git
synced 2026-09-16 14:31:36 -04:00
First commit of biketree to github!
This commit is contained in:
Executable
+31
@@ -0,0 +1,31 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Language Select</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<center>
|
||||
<form name="language" action="installer.php" method="POST">
|
||||
Language Select: <select name="language" style="border-style: solid; border-width: 1; padding-left: 4; padding-right: 4; padding-top: 1; padding-bottom: 1">
|
||||
<?php
|
||||
$handle = opendir('../language');
|
||||
while (false !== ($file = readdir($handle)))
|
||||
{
|
||||
if ($file {0}!='.')
|
||||
{
|
||||
$temp_lang=ucfirst(substr($file,0,strpos($file,'.')));
|
||||
echo "<option value='$file'>$temp_lang</option>";
|
||||
}
|
||||
}
|
||||
closedir($handle);
|
||||
|
||||
?>
|
||||
|
||||
</select>
|
||||
|
||||
<input type="submit">
|
||||
</form>
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user