Changeset 4 for www/is/restart.php


Ignore:
Timestamp:
Jan 14, 2008, 9:48:39 PM (17 years ago)
Author:
george
Message:

Upraveno: Změna přístupu k databázi na třídu rozšířenou mysqli.
Upraveno: Sjednocení
Upraveno: Změna kódování všech stránek na UTF-8.
Odstraňeno: Staré nepotřebné soubory.

Location:
www
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • www

    • Property svn:ignore set to
      config.php
      php_script_error.log
  • www/is/restart.php

    r1 r4  
    1 <?
    2 include('global.php');
    3 include_once('db.php');
    4 DB_Init('localhost', 'root', '', 'is');
     1<?php
     2include('../style.php');
     3ShowHeader('Restart služeb', 'Restart služeb');
    54
    65$State = array('Neplánováno', 'V plánu');
     
    1312    {
    1413      $Id = addslashes($Index);   
    15       DB_Update('services_restart', 'id='.$Id, array('changed' => 1));
     14      $Database->update('services_restart', 'id='.$Id, array('changed' => 1));
    1615    }
    1716  }
     
    2019$Period = 60;
    2120
    22 echo('Vyberte slu¾by, které chcete restartovat:<br><form method="post">');
    23 echo('<table border="1" cellspacing="0"><tr><th>Slu¾ba</th><th>Restart</th><th>Zbývající èas</th></tr>');
    24 DB_Select('services_restart', '*, UNIX_TIMESTAMP(last_time)');
    25 while($Service = DB_Row())
     21echo('Vyberte služby, které chcete restartovat:<br><form method="post">');
     22echo('<table border="1" cellspacing="0"><tr><th>Sluľba</th><th>Restart</th><th>Zbývající čas</th></tr>');
     23$DbResult = $Database->select('services_restart', '*, UNIX_TIMESTAMP(last_time)');
     24while($Service = $DbResult->fetch_array())
    2625{
    2726  if($Service['changed'] == 1)
     
    3635echo('</table><input type="submit" name="set" value="Naplánovat restart vybraných"></form>');
    3736
    38 
    39 
    4037?>
Note: See TracChangeset for help on using the changeset viewer.