Changeset 62
- Timestamp:
- Apr 3, 2008, 7:44:23 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
www/www/astea/index.php
r13 r62 1 <?php 2 3 session_start(); 4 5 echo(' 1 6 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 7 <html> … … 6 11 <title>Práce pro Asteu</title> 7 12 </head> 8 <body> 9 <h2>Párování snímačů�</h2> 13 <body>'); 14 15 if(array_key_exists('Action', $_GET) and addslashes($_GET['Action'] == 'Login')) 16 { 17 if(addslashes($_POST['Password']) == 'agilent') $_SESSION['AccessGranted'] = 1; 18 } 19 20 if(array_key_exists('AccessGranted', $_SESSION)) 21 { 22 echo('<h2>Párování snímačů</h2> 10 23 <hr> 11 12 <table border="1" cellspacing="0" cellpadding="3"> 13 <?php 24 <table border="1" cellspacing="0" cellpadding="3">'); 14 25 15 26 function ReleaseRow($Version, $ExeName, $ChangeLog, $Other) … … 21 32 } 22 33 23 ?> 24 <tr><th>Verze</th><th>Instalační soubor</th><th>Změny</th><th>Další dokumenty</th</tr> 25 <?php 26 ReleaseRow('8.24', 'InstalaceParovaniSnimacu', 'Novinky', ' '); 34 echo('<tr><th>Verze</th><th>Instalační soubor</th><th>Změny</th><th>Další dokumenty</th></tr>'); 35 36 ReleaseRow('8.24', 'InstalaceParovaniSnimacu', 'Novinky', ' '); 27 37 /* 28 38 ReleaseRow('8.23', 'InstalaceParovaniSnimacu', 'Novinky', ' '); … … 48 58 ReleaseRow('6.9', 'InstalaceParovani', 'Novinky', ' '); 49 59 */ 50 ?> 51 60 61 echo('</table> 52 62 53 63 <br> 54 <h2>Nastavení dveří /h2>64 <h2>Nastavení dveří</h2> 55 65 <hr> 56 66 <table border="1" cellspacing="0" cellpadding="3"> 57 <tr><th>Verze</th><th>Instalační soubor</th><th>Změny</th><th>Dal ěí dokumenty</th</tr>67 <tr><th>Verze</th><th>Instalační soubor</th><th>Změny</th><th>Další dokumenty</th></tr>'); 58 68 59 <?php60 69 ReleaseRow('1.1.14', 'InstalaceNastaveniDveri', 'NovinkyDvere', ' '); 61 70 /* … … 67 76 ReleaseRow('1.1.8', 'InstalaceNastaveniDveri', 'Novinky', ' '); 68 77 */ 69 ?> 70 </table> 78 echo('</table>'); 79 } else 80 { 81 echo('<form action="?Action=Login" method="post">'. 82 'Zadejte heslo: <input type="text" name="Password"> <input type="submit" value="Přihlásit"></form>'); 83 } 71 84 72 </body></html> 85 echo('</body></html>');
Note:
See TracChangeset
for help on using the changeset viewer.