|
|
|
อยากสอบถามการใส่โค๊ด PHP เข้าไปใน Bootstrap ครับ แต่ไฟล์โค๊ดมีไฟล์เดียวครับ |
|
|
|
|
|
|
|
ผมมีโค้ดโชว์พนักงานจาก db ครับแล้วก็ เพิ่ม ลบ แก้ไข คือถ้ากดแก้ไข หรือว่าเพิ่ม ก็จะเหมือนไปอีกหน้าที่มีแต่ฟอร์มเอาไว้แก้ไขกับเพิ่ม แต่ว่าตัวไฟล์โค้ดมีไฟล์เดียว แบบนี้ผมจะใส่มันใน Bootstrap ได้ยังไงครับ
Code (PHP)
<? include_once "connDB.php"; ?>
<?
if($submit=="OK"){
if($id1==""){
$sql="INSERT INTO tbl_employee set empid='".$empid."',positionNo='".$positionNo."',username='".$username."',firstName='".$firstName."',lastName='".$lastName."',phone='".$phone."',address='".$address."'";
}else{
$sql="UPDATE tbl_employee set positionNo='".$positionNo."',username='".$username."',firstName='".$firstName."',lastName='".$lastName."',phone='".$phone."',address='".$address."' WHERE empid='".$id1."'" ;
}
mysql_query($sql);
}
if ($submit=="DEL"){
$sql="delete from tbl_employee where empid ='".$id1."'";
mysql_query($sql);
}
?>
<script language="JavaScript">
function chkdel(){
if(confirm(' กรุณายืนยันการลบ')){
return true;
}else{
return false;
}
}
function Check_txt(){
if(document.getElementById('empid').value==""){
alert("กรุณาระบุ Empid");
document.getElementById('empid').focus();
return false;
}
if(document.getElementById('positionNo').value==""){
alert("กรุณาระบุ PositionNo");
document.getElementById('positionNo').focus();
return false;
}
if(document.getElementById('username').value==""){
alert("กรุณาระบุ Username");
document.getElementById('username').focus();
return false;
}
if(document.getElementById('firstName').value==""){
alert("กรุณาระบุ FirstName");
document.getElementById('firstName').focus();
return false;
}
if(document.getElementById('lastName').value==""){
alert("กรุณาระบุ LastName");
document.getElementById('lastName').focus();
return false;
}
if(document.getElementById('phone').value==""){
alert("กรุณาระบุ Phone");
document.getElementById('phone').focus();
return false;
}
if(document.getElementById('address').value==""){
alert("กรุณาระบุ Address");
document.getElementById('address').focus();
return false;
}
}
function isEmail(str) {
var supported = 0;
if (window.RegExp) {
var tempStr = 'a';
var tempReg = new RegExp(tempStr);
if (tempReg.test(tempStr)) supported = 1;
}
if (!supported)
return (str.indexOf('.') > 2) && (str.indexOf('@') > 0);
var r1 = new RegExp('(@.*@)|(\\.\\.)|(@\\.)|(^\\.)');
var r2 = new RegExp('^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$');
return (!r1.test(str) && r2.test(str));
}
</script><head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Show Employee</title>
</head>
<link rel='stylesheet' href='date_time/datepicker.css'>
<body>
<? if($submit=="" or $show=="OK"){?>
<center><form name="form1" method="post" action="employee.php?show=OK&strSearch=Y">
<table >
<tr>
<td width="50%"><div align="right">ค้นหา :<select name="Search2">
<option value="empid" <? if($Search2=="empid"){ ?>selected<? }?>>Empid</option>
<option value="positionNo" <? if($Search2=="positionNo"){ ?>selected<? }?>>PositionNo</option>
<option value="username" <? if($Search2=="username"){ ?>selected<? }?>>Username</option>
<option value="firstName" <? if($Search2=="firstName"){ ?>selected<? }?>>FirstName</option>
<option value="lastName" <? if($Search2=="lastName"){ ?>selected<? }?>>LastName</option>
<option value="phone" <? if($Search2=="phone"){ ?>selected<? }?>>Phone</option>
<option value="address" <? if($Search2=="address"){ ?>selected<? }?>>Address</option>
</select></div>
</td>
<td width="64%"><input name="Search" type="text" size="20" value="<? echo $Search?>"onFocus="this.value = '';">
<input type="submit" name="submit" value="Search">
</td>
</tr>
</table>
</form></center>
<?
if(!isset($start)){
$start = 0;
$page=1;
}
$limit = '20';
if($strSearch=="Y"){
$Qtotal = mysql_query("select * from tbl_employee Where ".$Search2." like '%".$Search."%' ");
}else{
$Qtotal = mysql_query("select * from tbl_employee");
}
$total = mysql_num_rows($Qtotal);
if($strSearch=="Y"){
$Query = mysql_query("select * from tbl_employee Where ".$Search2." like '%".$Search."%' order by empid DESC LIMIT $start,$limit");
}else{
$Query= mysql_query("select * from tbl_employee order by empid DESC LIMIT $start,$limit");
}
?><br><br>
<table width="98%">
<tr>
<td align='center'><strong>Empid </strong></td>
<td align='center'><strong>PositionNo </strong></td>
<td align='center'><strong>Username </strong></td>
<td align='center'><strong>FirstName </strong></td>
<td align='center'><strong>LastName </strong></td>
<td align='center'><strong>Phone </strong></td>
<td align='center'><strong>Address </strong></td>
<td width="8%"><a href="employee.php?submit=Add&show="><center><img src="style/images/add.png" border="0"></center></a></td>
</tr>
<?
while($arr = mysql_fetch_array($Query)){
$autoid = $arr['empid'];
$i++;
if($i%2==0){
$bg = ""; //แก้สีเดิม CCCCCC
}else{
$bg = ""; //สีเดิม FFFFFF
}
?>
<tr bgcolor="<? echo $bg?>" onMouseOver="this.style.backgroundColor='" onMouseOut="this.style.backgroundColor=''" valign="top">
<td align='center'><? echo $arr['empid'] ?></td>
<td align='center'><? echo $arr['positionNo'] ?></td>
<td align='center'><? echo $arr['username'] ?></td>
<td align='center'><? echo $arr['firstName'] ?></td>
<td align='center'><? echo $arr['lastName'] ?></td>
<td align='center'><? echo $arr['phone'] ?></td>
<td align='center'><? echo $arr['address'] ?></td>
<td align="center">
<a href="employee.php?submit=DEL&show=OK&id1=<? echo $autoid;?>" OnClick="return chkdel();"><img src="style/images/-.png" border="0"></a>
<a href="employee.php?submit=Edit&id1=<? echo $autoid;?>"><img src="style/images/Tools.png" border="0"></a></td>
</tr>
<? }?>
</table>
<? }?>
<? if($submit=="Add"){?>
<form action="employee.php?submit=OK&show=OK&id1=" method="post"onSubmit="return Check_txt()" enctype='multipart/form-data'>
<table width="98%">
<tr>
<td width='30%' align='right'>Empid : </td>
<td width='70%'><input name='empid' id='empid' type='text' size='50'> * </td>
</tr>
<tr>
<td width='30%' align='right'>PositionNo : </td>
<td width='70%'><input name='positionNo' id='positionNo' type='text' size='50'> * </td>
</tr>
<tr>
<td width='30%' align='right'>Username : </td>
<td width='70%'><input name='username' id='username' type='text' size='50'> * </td>
</tr>
<tr>
<td width='30%' align='right'>FirstName : </td>
<td width='70%'><input name='firstName' id='firstName' type='text' size='50'> * </td>
</tr>
<tr>
<td width='30%' align='right'>LastName : </td>
<td width='70%'><input name='lastName' id='lastName' type='text' size='50'> * </td>
</tr>
<tr>
<td width='30%' align='right'>Phone : </td>
<td width='70%'><input name='phone' id='phone' type='text' size='50'> * </td>
</tr>
<tr>
<td width='30%' align='right'>Address : </td>
<td width='70%'><input name='address' id='address' type='text' size='50'> * </td>
</tr>
<tr height='50'>
<td></td>
<td align='left' valign='middle'><input type='submit' name='Submit' value=' บันทึก '> <input type='reset' name='Submit2' value='ล้างข้อมูล'> <input type='button' name='Submit222' value=' ยกเลิก ' onClick="document.location.href='employee.php?show=OK'"></td>
</tr>
</table>
</form>
<? }?>
<? if($submit=="Edit"){
$sql="select * from tbl_employee where empid ='".$id1."' ";
$tem = mysql_query($sql);
$row3=mysql_fetch_array($tem);
?>
<form action="employee.php?submit=OK&show=OK&id1=<? echo $id1?>" method="post"onSubmit="return Check_txt();" enctype='multipart/form-data'>
<input type='hidden' name='empid' value="<?=$row3['empid']?>">
<table width="98%">
<tr>
<td width='30%' align='right'>Empid : </td>
<td width='70%'><input name='empid' id='empid' type='text' size='50' value='<?=$row3["empid"]?>' disabled> * </td>
</tr>
<tr>
<td width='30%' align='right'>PositionNo : </td>
<td width='70%'><input name='positionNo' id='positionNo' type='text' size='50' value='<?=$row3["positionNo"]?>'> * </td>
</tr>
<tr>
<td width='30%' align='right'>Username : </td>
<td width='70%'><input name='username' id='username' type='text' size='50' value='<?=$row3["username"]?>'> * </td>
</tr>
<tr>
<td width='30%' align='right'>FirstName : </td>
<td width='70%'><input name='firstName' id='firstName' type='text' size='50' value='<?=$row3["firstName"]?>'> * </td>
</tr>
<tr>
<td width='30%' align='right'>LastName : </td>
<td width='70%'><input name='lastName' id='lastName' type='text' size='50' value='<?=$row3["lastName"]?>'> * </td>
</tr>
<tr>
<td width='30%' align='right'>Phone : </td>
<td width='70%'><input name='phone' id='phone' type='text' size='50' value='<?=$row3["phone"]?>'> * </td>
</tr>
<tr>
<td width='30%' align='right'>Address : </td>
<td width='70%'><input name='address' id='address' type='text' size='50' value='<?=$row3["address"]?>'> * </td>
</tr>
<tr height="50">
<td></td>
<td><input type="submit" name="Submit" value=" บันทึก "> <input type="button" name="Submit222" value=" ยกเลิก " onClick="document.location.href='employee.php?show=OK'"></td>
</tr>
</table>
</form>
<? }?>
</div>
</center>
</body>
Tag : PHP
|
|
|
|
|
|
Date :
2014-09-22 18:33:34 |
By :
11017001 |
View :
1862 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งง ครับ
|
|
|
|
|
Date :
2014-09-22 22:37:41 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เข้าใจคำถาม อะไรคือ ตัวไฟล์โค้ดมีไฟล์เดียว แล้วจะใส่อะไรใน Bootstrap จะเอาไปใส่ทำไม ยังไง
เท่าที่ศึกษามา มีแต่เรียกใช้ Bootstrap ลองอธิบายใหม่ครับ
ลองศึกษาใหม่ครับ http://getbootstrap.com/getting-started/#examples
|
|
|
|
|
Date :
2014-09-22 22:44:31 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเข้าใจคำถามไม่ผิด คือ มีตารางแสดงข้อมูล และมีปุ่มกดแก้ไข หรือกดเพิ่ม ก็จะมี Form แสดงขึ้นมาในหน้าเดียวกัน แบบนี้ใช่หรือเปล่า
ถ้าใช่ ใช้ if ดักค่า POST ก็ได้ครับ
Code (PHP)
if(!empty($_POST['Edit']){
// Code Edit Form Here
}
if(!empty($_POST['Add']){
// Code Add Form Here
}
|
|
|
|
|
Date :
2014-09-22 22:59:34 |
By :
pob_suwan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือหน้าแรกพอรันมาจะเป็นแบบนี้ครับ
พอกดแก้ไขจะเหมือนรันอีกหน้าครับ
คือถ้าผมจะตกแต่ง form ด้วย bootstrap ก็ทำที่แต่ละฟอร์มใช่มั้ยครับ แล้วอย่างพวกเมนู navbar ด้านบนนี่จะใส่เข้าไปตรงไหนครับ
|
|
|
|
|
Date :
2014-09-23 00:24:50 |
By :
11017001 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมบอก่อนนะ ผมไม่ได้เก่ง bootstrap แต่การจะดึงมาใช้ก็อ้างอิง id หรือ class นั้น ๆ ถ้ามี jQuery ในการควบคุมก็เอามาใส่
มันไม่น่าจะมีอะไรมากกว่านั้นนี่ครับ
หรือ ผมเข้าใจผิดมาตลอด แย่แล้วสิเรา T_T
|
|
|
|
|
Date :
2014-09-23 10:11:16 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|