00001 <? 00002 /************************************************************************************** 00003 Studentski Informacijski servis, 2004 00004 ************************************************************************************** 00005 status.php 00006 provjera dostupnosti DB hosta 00007 00008 zelena lampica - DB host dostupan 00009 crvena lampica - DB host nedostupan 00010 00011 00012 Srdjan Segvic - srle 00013 ************************************************************************************** 00014 ************************************************************************************** 00015 This program is free software; you can redistribute it and/or modify 00016 it under the terms of the GNU General Public License as published by 00017 the Free Software Foundation; either version 2 of the License, or 00018 (at your option) any later version. 00019 00020 This program is distributed in the hope that it will be useful, 00021 but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 GNU Library General Public License for more details. 00024 00025 You should have received a copy of the GNU General Public License 00026 along with this program; if not, write to the Free Software 00027 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00028 **************************************************************************************/ 00029 00030 // 00031 // provjera dostupnosti DB hosta, na login screenu lampica... 00032 // 00033 00034 include('config.sis.php'); 00035 00036 if (!@mysql_connect($dbhost, $dbuser, $dbpass)){ 00037 $status = "<a href=\"#\" title=\"SiS.Student trenutno nije u funkciji, pokušajte poslije\"><img src=\"template/red_status.gif\" width=\"13\" height=\"14\" border=\"0\"></a>"; 00038 $disable = "disabled=\"true\""; 00039 } 00040 else { 00041 $status ="<a href=\"#\" title=\"SiS.Student je up-and-running\"><img src=\"template/green_status.gif\" width=\"13\" height=\"14\" border=\"0\"></a>"; 00042 $disable = ""; 00043 } 00044 ?>