root/trunk/rms-web/server.php

Revision 4570, 295 bytes (checked in by erijo, 2 years ago)

Undo r4567 since rms-web has not been replaced by licqweb.
Also fixed most of the images (they were broken) by copying them from
licqweb.

  • Property svn:eol-style set to native
Line 
1<?php
2include "check_session.php";
3include "rms.php";
4include "config.php";
5
6$cmd = $_POST["cmd"];
7
8switch($cmd)
9{
10  case "chgStatus":
11    $newStatus = $_POST["status"];
12    rmsLogin($username, $password);
13    rmsChangeStatus($newStatus);
14   
15    header("Location: list.php");
16    break;
17}
18
19?>
Note: See TracBrowser for help on using the browser.