Magellan Linux

Annotation of /alx-src/trunk/alx-web/loc.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2804 - (hide annotations) (download)
Mon Aug 29 20:22:21 2011 UTC (12 years, 8 months ago) by niro
File size: 1723 byte(s)
-merged branch alx-web-0_6_0 into trunk
1 niro 1610 <?
2 niro 2188
3     include('include/basesql.php');
4     $data = sqlfirst('SELECT rsync,repository,updateserver,username FROM client_locations WHERE location=\''.redir(stripslashes($_GET['location'])).'\'');
5     if($data==null) exit;
6    
7     if($_POST['do_upload'])
8     {
9     $data = array( 'updateserver'=>$_POST['s_updateserver'],
10     'username'=>$_POST['s_username'],
11     'password'=>$_POST['s_password'],
12     'rsync'=>$_POST['s_rsync'],
13     'repository'=>$_POST['s_repository']);
14     if($data['password']=='KEEPPASS') unset($data['password']);
15     mysql_query('UPDATE client_locations SET '.updatestr($data).' WHERE location=\''.redir(stripslashes($_GET['location'])).'\'');
16     }
17    
18 niro 1610 ?>
19 niro 2188
20 niro 1600 <head>
21     <title>ALX Config</title>
22     <style>
23     body,table { font-family:Tahoma; font-size:8pt }
24     a { color:#000000; text-decoration:none; }
25     input { font-size:8pt; font-family:Tahoma }
26 niro 1610 </style>
27     </head>
28     <body>
29     <form action="" method="post">
30     <input type="hidden" name="do_upload" value="1" />
31     <table>
32     <tr> <td colspan="2" style="font-size:10pt"><b>[location_<? echo stripslashes($_GET['location']); ?>]</b> </td></tr>
33     <tr> <td>rsync =</td> <td><input name="s_rsync" value="<? echo $data['rsync']; ?>" /></td> </tr>
34     <tr> <td>repository =</td> <td><input name="s_repository" value="<? echo $data['repository']; ?>" /></td> </tr>
35     <tr> <td width="100">updateserver =</td> <td><input name="s_updateserver" value="<? echo $data['updateserver']; ?>" /></td> </tr>
36     <tr> <td>username =</td> <td><input name="s_username" value="<? echo $data['username']; ?>" /></td> </tr>
37     <tr> <td>password =</td> <td><input name="s_password" value="KEEPPASS" type="password" /></td> </tr>
38     <tr> <td colspan="2" align="right"><input type="submit" value="SAVE"></td></tr>
39     </table>
40     </form>
41     </body>

Properties

Name Value
svn:executable *