Magellan Linux

Contents of /alx-src/tags/alx-web-0_7_0_20181113_1/loc.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12871 - (show annotations) (download)
Tue Nov 13 08:53:04 2018 UTC (5 years, 5 months ago) by niro
File size: 1723 byte(s)
tagged 'alx-web-0_7_0_20181113_1'
1 <?
2
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 ?>
19
20 <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 </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>