403Webshell
Server IP : 134.236.49.22  /  Your IP : 216.73.216.114
Web Server : Apache/2.2.15 (Fedora)
System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686
User : apache ( 48)
PHP Version : 5.3.3
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/Menu pusdu/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/Menu pusdu/index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>ใบเบิกพัสดุคอมพิวเตอร์ โรงพยาบาลสัตหีบ กม.10</title>
<style type="text/css">
<!--
.style11 {font-size: 12px}
.style12 {color: #FF0000}
.style14 {color: #CC6600}
.style15 {font-size: 12px; color: #FF0000; }
.style16 {
	color: #FFFFFF;
	font-size: 14px;
}
-->
</style>
 <link rel="stylesheet" href="style.css" type="text/css" media="screen"> 
 <!--[if IE ]> 
 <link href="ie.css" rel="stylesheet" type="text/css"> 
 <![endif]--> 
 <style type="text/css"> 
 #url { width: 250px; height: 27px; font-size: 18px; font-family: Arial; } 
 #submitButton { font-family: arial; } 
 </style> 
 <script type="text/javascript"> 
 window.onload=function() { 
 var obj = document.getElementById('url'); // See difference? 
 if (obj) { 
 obj.onchange=function() { return JumpToIt(this); }; 
 document.getElementById('submitButton').style.display='none'; 
 } 
 } 
 // 
 function JumpToIt(selectObject) { 
 var ind = selectObject.selectedIndex; 
 if (ind==0) { alert('Please select a URL.'); } 
 else { 
 document.location = selectObject.options[ind].value; 
 } 
 return false; 
 } 
</script> 
</head>

<body>

<!-- เปลี่ยนสีเมาส์ เรนโบว์ -->
<style> 
<!-- 
a{text-decoration:none} 
//.style55 {font-size: 16}
.style56 {color: #FFFFFF}
.style11 {font-size: 12px}
.style57 {color: #0099FF}
.style58 {color: #FF3333; font-size: 14px; }
.style59 {font-size: 14px}
--> 
</style> 
<SCRIPT language=JavaScript> 
var rate = 20; // Increase amount(The degree of the transmutation) 
var obj; // The object which event occured in 
var act = 0; // Flag during the action 
var elmH = 0; // Hue 
var elmS = 128; // Saturation 
var elmV = 255; // Value 
var clrOrg; // A color before the change 
var TimerID; // Timer ID 
if (navigator.appName.indexOf("Microsoft",0) != -1 && parseInt(navigator.appVersion) >= 4) { 
Browser = true; 
} else { 
Browser = false; 
} 
if (Browser) { 
document.onmouseover = doRainbowAnchor; 
document.onmouseout = stopRainbowAnchor; 
} 
function doRainbow() 
{ 
if (Browser && act != 1) { 
act = 1; 
obj = event.srcElement; 
clrOrg = obj.style.color; 
TimerID = setInterval("ChangeColor()",100); 
} 
} 
function stopRainbow() 
{ 
if (Browser && act != 0) { 
obj.style.color = clrOrg; 
clearInterval(TimerID); 
act = 0; 
} 
} 
function doRainbowAnchor() 
{ 
if (Browser && act != 1) { 
obj = event.srcElement; 
while (obj.tagName != 'A' && obj.tagName != 'BODY') { 
obj = obj.parentElement; 
if (obj.tagName == 'A' || obj.tagName == 'BODY') 
break; 
} 
if (obj.tagName == 'A' && obj.href != '') { 
act = 1; 
clrOrg = obj.style.color; 
TimerID = setInterval("ChangeColor()",100); 
} 
} 
} 
function stopRainbowAnchor() 
{ 
if (Browser && act != 0) { 
if (obj.tagName == 'A') { 
obj.style.color = clrOrg; 
clearInterval(TimerID); 
act = 0; 
} 
} 
} 
function ChangeColor() 
{ 
obj.style.color = makeColor(); 
} 
function makeColor() 
{ 
if (elmS == 0) { 
elmR = elmV; elmG = elmV; elmB = elmV; 
} 
else { 
t1 = elmV; 
t2 = (255 - elmS) * elmV / 255; 
t3 = elmH % 60; 
t3 = (t1 - t2) * t3 / 60; 
if (elmH < 60) { 
elmR = t1; elmB = t2; elmG = t2 + t3; 
} 
else if (elmH < 120) { 
elmG = t1; elmB = t2; elmR = t1 - t3; 
} 
else if (elmH < 180) { 
elmG = t1; elmR = t2; elmB = t2 + t3; 
} 
else if (elmH < 240) { 
elmB = t1; elmR = t2; elmG = t1 - t3; 
} 
else if (elmH < 300) { 
elmB = t1; elmG = t2; elmR = t2 + t3; 
} 
else if (elmH < 360) { 
elmR = t1; elmG = t2; elmB = t1 - t3; 
} 
else { 
elmR = 0; elmG = 0; elmB = 0; 
} 
} 
elmR = Math.floor(elmR); 
elmG = Math.floor(elmG); 
elmB = Math.floor(elmB); 
clrRGB = '#' + elmR.toString(16) + elmG.toString(16) + elmB.toString(16); 
elmH = elmH + rate; 
if (elmH >= 360) 
elmH = 0; 
return clrRGB; 
} 
</SCRIPT>
<!-- จบแทกเปลี่ยนสีเรนโบว์-->

<center>
<div align="center"><img src="img/Headerstation.jpg" width="626" height="121" /><br />
    <table width="627" border="0">
      <tr bgcolor="#42FFFF">
        <td width="621"><form id="my-form" action="capture-submit.php" method="get">
            <div align="right">รายงานรวมการเบิกพัสดุคอมพิวเตอร์ในแต่ละเดือน
              <select name="url" id="url">
                  <option value="">กรุณาเลือกเดือนที่จะดูรายงาน</option>
				   <option value="http://192.168.2.2:88/Menu%20pusdu/showalladmin/mount1admin.php">มกราคม 2557</option>
                  <option value="http://192.168.2.2:88/Menu%20pusdu/showalladmin/mount2admin.php">กุมภาพันธ์ 2557</option>
                  <option value="http://192.168.2.2:88/Menu%20pusdu/showalladmin/mount3admin.php">มีนาคม 2557</option>
                  <option value="http://192.168.2.2:88/Menu%20pusdu/showalladmin/mount4admin.php">เมษายน 2557</option>
                  <option value="http://192.168.2.2:88/Menu%20pusdu/showalladmin/mount5admin.php">พฤษภาคม 2557</option>
                  <option value="http://192.168.2.2:88/Menu%20pusdu/showalladmin/mount6admin.php">มิถุนายน 2557</option>
                  <option value="http://192.168.2.2:88/Menu%20pusdu/showalladmin/mount7admin.php">กรกฏาคม 2557</option>
                  <option value="http://192.168.2.2:88/Menu%20pusdu/showalladmin/mount8admin.php">สิงหาคม 2557</option>
                  <option value="http://192.168.2.2:88/Menu%20pusdu/showalladmin/mount9admin.php">กันยายน 2557</option>
                  <option value="http://192.168.2.2:88/Menu%20pusdu/showalladmin/mount10admin.php">ตุลาคม 2557</option>
                  <option value="http://192.168.2.2:88/Menu%20pusdu/showalladmin/mount11admin.php">พฤศจิกายน 2557</option>
                  <option value="http://192.168.2.2:88/Menu%20pusdu/showalladmin/mount12admin.php">ธันวาคม 2557</option>
                </select>
            </div>
        </form></td>
      </tr>
    </table>
    <table width="624" height="358" border="2">
    <tr>
      <td width="612" height="350"><table width="609" height="675" border="0">
        <tr>
          <td width="23" height="671" bordercolor="#FFFFFF">&nbsp;</td>
          <td width="310" bordercolor="#FFFFFF"><p class="style12">กรุณาเลือกหน่วยงานของท่านเพื่อเบิกพัสดุ</p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/com/index.html" target="_parent" class="style14" style="text-decoration: none;">ศูนย์คอม</a> <br />
              (30604) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/pharma/index.html" target="_parent" class="style14" style="text-decoration: none;">เภสัชกรรม</a> <br />
              (30501) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/lab/index.html" target="_parent" class="style14" style="text-decoration: none;">ชันสูตร</a> <br />
              (30502)</p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/strategy/index.html" target="_parent" class="style14" style="text-decoration: none;">ยุทธศาสตร์</a> <br />
              (30601) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/manage/index.html" target="_parent" class="style14" style="text-decoration: none;">บริหารงานทั่วไป</a><br>
              (30101 ผอ) (30102 การเงินบัญชี) (30103 ธุรการ HR) (30104 พัสดุ) (30107 โสตสถานที่) (30108 ช่าง) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/insuranc/index.html" target="_parent" class="style14" style="text-decoration: none;">ประกันสุขภาพ</a> <br />
              (30105) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/massage/index.html" target="_parent" class="style14" style="text-decoration: none;">แพทย์แผนไทย</a> <br />
              (30204) (30205กายภาพ) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/OR/index.html" target="_parent" class="style14" style="text-decoration: none;">ห้องผ่าตัด (OR)  </a> <br />
              (30406)</p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/plutaluang/index.html" target="_parent" class="style14" style="text-decoration: none;">PCU พลูตาหลวง  </a><br />
              (30301)</p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="km1/index.html" target="_parent" class="style14" style="text-decoration: none;">ศูนย์สุขภาพชุมชนตำบลสัตหีบ <br />
            </a>(30302) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/er/index.html" target="_parent" class="style14" style="text-decoration: none;">ฉุกเฉิน (ER)</a> <br />
              (30402) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/ic/index.html" target="_parent" class="style14" style="text-decoration: none;">IC</a> <br />
              (30407)  (30106 env) <br />
              <br />
            </p>
            <p align="left"><a href="http://192.168.2.2:88/Menu%20pusdu/showall/index.html" target="_parent" class="style16" style="text-decoration: none;">admin check</a><br />
              <br />
            </p></td>
          <td width="262" bordercolor="#FFFFFF"><p class="style12">&nbsp;</p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/supply/index.html" target="_parent" class="style14" style="text-decoration: none;">ห้องซักฟอกหน่วยจ่ายกลาง</a> <br />
              (30408) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/canteen/index.html" target="_parent" class="style14" style="text-decoration: none;">โภชนาการ</a> <br />
              (30504) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/lr/index.html" target="_parent" class="style14" style="text-decoration: none;">ห้องคลอด (LR) </a> <br />
              (30405) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/ward/index.html" target="_parent" class="style14" style="text-decoration: none;">ผู้ป่วยใน (Ward) <br />
            </a>(30404)</p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/opd/index.html"  target="_parent" class="style14" style="text-decoration: none;">ผู้ป่วยนอก (OPD)</a> (30403) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/pharmastore/index.html"  target="_parent" class="style14" style="text-decoration: none;">คลังยา</a> (30501) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/driver/index.html" target="_parent" class="style14" style="text-decoration: none;">หน่วยงานยานพาหนะ</a> <br />
              (30109) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/dental/index.html" target="_parent" class="style14" style="text-decoration: none;">ห้องทันตกรรม</a> <br />
              (30202คลินิค) (30203ชุมชน) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/doctor/index.html" target="_parent" class="style14" style="text-decoration: none;">ห้องพักแพทย์ <br />
            </a>(30201)</p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/room4/index.html" target="_parent" class="style14" style="text-decoration: none;">คลีนิคพิเศษ</a> <br />
              (30401) </p>
            <p align="left"><img src="../images/logo/flower1 (4).gif" width="20" height="20" border="0" /> <a href="http://192.168.2.2:88/Menu%20pusdu/xray/index.html" target="_parent" class="style14" style="text-decoration: none;">รังสี (X-ray) </a> <br />
              (30503) </p>
            <p align="left">&nbsp;</p>
            <p align="left">&nbsp;</p>
            <p align="left">&nbsp;</p>
            <p align="left"><span class="style15"><br />
              * การเบิกหมึก กรุณาเบิกเดือนต่อเดือน ห้ามเบิกไป stock หลายๆเดือน </span></p>
            <span class="style15">* หน่วยงานใดไม่มีชื่อในรายการ กรุณาแจ้งศูนย์คอม </span></td>
        </tr>
      </table>
      
  </table>
  <table width="629" height="51" border="0">
    <tr>
      <td width="623"><embed height="96" type="application/x-shockwave-flash" width="622" src="../Flash On web/footerflash1.swf" wmode="transparent"></embed></td>
    </tr>
  </table>
  <img src="img/Header1.jpg" width="628" height="82" />
  <br>
<img src="img/Footer.png" width="627" height="69" /></div>
<p align="center"><span class="style11">Copyright<img src="../images/logo/copyright.jpg" width="13" height="16" />  2010 Pozedorn@gmail.com sattahip km.10 hospital.</span><br clear="all" />
  <strong> </strong></p>
</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit