Magellan Linux

Diff of /alx-src/tags/alx-web-0_7_0_20171218_1/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

alx-src/branches/alx-web-060/index.php revision 3348 by niro, Wed Feb 8 13:03:11 2012 UTC alx-src/branches/alx-web-070/index.php revision 7090 by niro, Wed Sep 9 07:51:52 2015 UTC
# Line 4  include('include/basesql.php'); Line 4  include('include/basesql.php');
4  include('include/common-functions.php');  include('include/common-functions.php');
5    
6  session_start();  session_start();
7  session_register('alx_sort_krit'); session_register('alx_sort_onfirst'); session_register('alx_sort_loc');  //session_register('alx_sort_krit'); session_register('alx_sort_onfirst'); session_register('alx_sort_loc');
8    $_SESSION['alx_sort_krit'] = $alx_sort_krit;
9    $_SESSION['alx_sort_onfirst'] = $alx_sort_onfirst;
10    $_SESSION['alx_sort_loc'] = $alx_sort_loc;
11    
12  $locations = sqlarr('SELECT location FROM client_locations', '', 'location');  $locations = sqlarr('SELECT location FROM client_locations', '', 'location');
13  $locations[] = '';  $locations[] = '';
# Line 135  foreach($comps as $c) Line 138  foreach($comps as $c)
138   else echo '<tr>';   else echo '<tr>';
139    
140   echo '<td><input type=button value="EDIT" onclick="location.href=\'show.php?id='.$c['serial'].'\'"></td>';   echo '<td><input type=button value="EDIT" onclick="location.href=\'show.php?id='.$c['serial'].'\'"></td>';
141   echo '<td>'.substr($c['location'],0,1).'</td>';   echo '<td>'.substr($c['location'],0,3).'</td>';
142   echo '<td><img src="pics/'.$pic.'.gif" alt="'.strtoupper($pic).'"></td>';   echo '<td><img src="pics/'.$pic.'.gif" alt="'.strtoupper($pic).'"></td>';
143   echo '<td width=40><b>#'.$c['serial'].'</b></td>';   echo '<td width=40><b>#'.$c['serial'].'</b></td>';
144   echo '<td><nobr>'.$c['hostname'].'</nobr></td>';   echo '<td><nobr>'.$c['hostname'].'</nobr></td>';
# Line 162  foreach($comps as $c) Line 165  foreach($comps as $c)
165   //$alxutils = $alxinfo[1];   //$alxutils = $alxinfo[1];
166   }   }
167   }   }
168   if($alxver == '') $alxver='unkown';   if($alxver == '') $alxver='unknown';
169   if($alxutils == '') $alxutils='unkown';   if($alxutils == '') $alxutils='unknown';
170    
171         echo '<td>'.$alxver.'</td>';         echo '<td>'.$alxver.'</td>';
172         echo '<td>'.$alxutils.'</td>';         echo '<td>'.$alxutils.'</td>';

Legend:
Removed from v.3348  
changed lines
  Added in v.7090