|
|
|
การจ่ายยาแค่ 1 ตัวหรือ 2 ตัว ควรทำยังไง ช่วยหน่อยค่ะ |
|
|
|
|
|
|
|
พี่ค่ะ ถ้าอยากจ่ายยาแค่ตัวเดียวหรือสองตัวแต่ตัวที่สามอยากให้เป็นค่าว่างเวลาอัพลงฐานข้อมูลควรเช็คยังไง ช่วยหน่อยค่ะ มือใหม่ค่ะ
Code (tbl_druguser)
<meta http-equiv="Content-Type" content="text/html; charset=tis-620" />
<link href="../css/style.css" rel="stylesheet" type="text/css" />
<?php include("header.php"); ?>
<?php include("menu.php"); ?>
<?php
include ("config.php");
$sql="select*from m_drug";
$result=mysql_query($sql,$conn) or die ("sql ผิดพลาด");
$num_rows=mysql_num_rows($result);
?>
<!--star content-->
<body>
<td width="75" valign="top"><div align="center">
<table width="800" border="0">
<tr>
<td><div align="center">
<form id="form1" name="form1" method="post" action="inser_druguser.php">
<table width="645" border="0">
<tr bgcolor="#FFCC33">
<td colspan="2"><div align="center"><strong>การจ่ายยา</strong></div></td>
</tr>
<tr>
<td bgcolor="#FFFF99"><div align="right">รหัสการจ่ายยา :</div></td>
<td bgcolor="#FFFF99"><input name="drugUserID" type="text" id="drugUserID" size="15" maxlength="4" /></td>
</tr>
<tr>
<td width="209" bgcolor="#FFFF99"><div align="right">รหัสการบริการ : </div></td>
<td width="426" bgcolor="#FFFF99"><label>
<input name="serviceID" type="text" id="serviceID" size="15" maxlength="4" />
</label></td>
</tr>
<tr>
<td bgcolor="#FFFF99"><div align="right">ยาตัวที่ 1 : </div></td>
<td bgcolor="#FFFF99"><strong>
<select name="drug1ID" id="drug1ID">
<?php
$sql="select * from m_drug ";
$result = mysql_query($sql,$conn)
or die("ไม่สามารถดึงข้อมูลจากตาราง m_drug ได้".mysql_error());
while($data=mysql_fetch_array($result)) {
?>
<option value="<?php echo $data ['drugID']?>"><?php echo $data ['drugName']?></option>
<?php
}
?>
</select>
</strong>จำนวนจ่าย :<strong>
<input name="number1" type="text" id="number1" size="15" maxlength="4" />
<select name="unit1ID" id="unit1ID">
<?php
$sql="select * from m_unit ";
$result = mysql_query($sql,$conn)
or die("ไม่สามารถดึงข้อมูลจากตาราง m_unit ได้".mysql_error());
while($data=mysql_fetch_array($result)) {
?>
<option value="<?php echo $data ['unitID']?>"><?php echo $data ['unitName']?></option>
<?php
}
?>
</select>
</strong></td>
</tr>
<tr>
<td bgcolor="#FFFF99"><div align="right">ยาตัวที่ 2 : </div></td>
<td bgcolor="#FFFF99"><strong>
<select name="drug2ID" id="drug2ID">
<?php
$sql="select * from m_drug ";
$result = mysql_query($sql,$conn)
or die("ไม่สามารถดึงข้อมูลจากตาราง m_drug ได้".mysql_error());
while($data=mysql_fetch_array($result)) {
?>
<option value="<?php echo $data ['drugID']?>"><?php echo $data ['drugName']?></option>
<?php
}
?>
</select>
</strong>จำนวนจ่าย : <strong>
<input name="number2" type="text" id="number2" size="15" maxlength="4" />
<select name="unit2ID" id="unit2ID">
<?php
$sql="select * from m_unit ";
$result = mysql_query($sql,$conn)
or die("ไม่สามารถดึงข้อมูลจากตาราง m_unit ได้".mysql_error());
while($data=mysql_fetch_array($result)) {
?>
<option value="<?php echo $data ['unitID']?>"><?php echo $data ['unitName']?></option>
<?php
}
?>
</select>
</strong></td>
</tr>
<tr>
<td bgcolor="#FFFF99"><div align="right">ยาตัวที่ 3 : </div></td>
<td bgcolor="#FFFF99"><strong>
<select name="drug3ID" id="drug3ID">
<?php
$sql="select * from m_drug ";
$result = mysql_query($sql,$conn)
or die("ไม่สามารถดึงข้อมูลจากตาราง m_drug ได้".mysql_error());
while($data=mysql_fetch_array($result)) {
?>
<option value="<?php echo $data ['drugID']?>"><?php echo $data ['drugName']?></option>
<?php
}
?>
</select>
</strong>จำนวนจ่าย :
<input name="number3" type="text" id="number3" size="15" maxlength="4" />
<strong>
<select name="unit3ID" id="unit3ID">
<?php
$sql="select * from m_unit ";
$result = mysql_query($sql,$conn)
or die("ไม่สามารถดึงข้อมูลจากตาราง m_unit ได้".mysql_error());
while($data=mysql_fetch_array($result)) {
?>
<option value="<?php echo $data ['unitID']?>"><?php echo $data ['unitName']?></option>
<?php
}
?>
</select>
</strong></td>
</tr>
<tr>
<td bgcolor="#FFFF99"> </td>
<td bgcolor="#FFFF99"><input type="submit" name="save" id="save" value="บันทึก" />
<input type="reset" name="cancel" id="cancel" onclick="history.go(-1) "value="ยกเลิก" /></td>
</tr>
</table>
</form>
</div></td>
</tr>
</table>
</div>
</table>
<?php include("footer.php"); ?>
Code (inser_druguser)
<meta http-equiv="Content-Type" content="text/html; charset=tis-620" />
<?php
include("config.php");
$drugUserID=$_REQUEST["drugUserID"];
$serviceID=$_REQUEST["serviceID"];
$drug1ID=$_REQUEST["drug1ID"];
$number1=$_REQUEST["number1"];
$unit1ID=$_REQUEST["unit1ID"];
$drug2ID=$_REQUEST["drug2ID"];
$number2=$_REQUEST["number2"];
$unit2ID=$_REQUEST["unit2ID"];
$drug1ID=$_REQUEST["drug3ID"];
$number1=$_REQUEST["number3"];
$unit1ID=$_REQUEST["unit3ID"];
{
$sql="INSERT INTO druguser(drugUserID,serviceID,drug1ID,number1,unit1ID,drug2ID,number2,unit2ID,drug3ID,number3,unit3ID)";
$sql.="VALUES ('$drugUserID','$serviceID','$drug1ID','$number1','$unit1ID','$drug2ID','$number2','$unit2ID','$drug3ID','$number3','$unit3ID')";
echo "<meta http-equiv=\"refresh\" content=\"1;URL=list_admin.php\">";
mysql_query($sql,$conn)
or die("ไม่สามารถเพิ่มข้อมูลลงสู่ตาราง drugudser ได้".mysql_error());
//echo "การเพิ่มข้อมูลสมบูรณ์";
mysql_close($conn);
echo "<meta http-equiv=\"refresh\" content=\"1;URL=list_druguser.php\">";
}
?>
Tag : PHP
|
|
|
|
|
|
Date :
2014-01-25 16:16:17 |
By :
june_191 |
View :
648 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$sql="INSERT INTO druguser SET drugUserID = '$drugUserID'";
$sql.=$drug3ID=="" ? NULL : ", drug3ID = '$drug3ID'";
$result = mysql_query($sql);
ปล. แก้ส่วนนี้ด้วยนะครับ มันเป็น 1 อยู่ แก้เป็น 3 ด้วย
Code (PHP)
$drug1ID=$_REQUEST["drug3ID"];
$number1=$_REQUEST["number3"];
$unit1ID=$_REQUEST["unit3ID"];
|
|
|
|
|
Date :
2014-01-25 16:41:23 |
By :
FreshyMusiC |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|