SA_RESTART do sigaction
[mirrors/Programs.git] / php / stredni-php / redakce / redakce.php
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
3 <html>
4 <head>
5 <meta http-equiv="content-type" content="text/html"; charset="utf-8">
6 <title>Redakce - (c) 2oo6 - Harvie</title>
7 <meta http-equiv="cache-control" content="no-cache" />
8
9 </head>
10
11 <body>
12
13 <div class="form">
14 <form action="edit.php" method="post">
15 Login: <input type="text" name="user" size="25"><br>
16 Password: <input type="password" name="password" size="25"><br>
17
18 Soubor:
19 <select name="file" size="10">
20
21 <?
22 $soubory=opendir('.');
23 while (false!==($file = readdir($soubory)))
24 {
25 if ($file != "." && $file != "..")
26 {
27 echo "<option value=\"" .$file."\">".$file."</option>\n";
28 }
29 }
30 closedir($soubory);
31 ?>
32
33 </select>
34
35 <input type="submit" value="EDIT">
36
37 </form>
38 </div>
39
40 </body>
41 </html>
This page took 0.270702 seconds and 4 git commands to generate.