Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > ใส่ function ปฏิทิน ในการเพิ่มแถวใหม่ รบกวนช่วยดูหน่อยนะครับ



 

ใส่ function ปฏิทิน ในการเพิ่มแถวใหม่ รบกวนช่วยดูหน่อยนะครับ

 



Topic : 108053



โพสกระทู้ ( 93 )
บทความ ( 0 )



สถานะออฟไลน์




ต้องการให้แถวในตารางที่เพิ่มใหม่ ใช้ function ปฏิทิน ได้ครับ รบกวนผู้รู้หน่อยนะครับ ว่าจะต้องแก้ตรงไหน

Code (PHP)
<head>
  <meta charset="utf-8">
  <title></title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script>
  $(function() {
    $( "#datepicker1" ).datepicker();
    $( "#datepicker2" ).datepicker();
    $( "#datepicke3" ).datepicker();
    $( "#datepicker4" ).datepicker();
    $( "#datepicker5" ).datepicker();
});

function CreatePO()
	{
		var intLine = parseInt(document.checkform.hdnMaxPO.value);
		intLine++;
		if(intLine<=5){
		var theTable = document.all.dataPO
		var newRow = theTable.insertRow(theTable.rows.length)
		//newRow.id = newRow.uniqueID

		var newCell
		
		//*** Column 1 ***//
		newCell = newRow.insertCell(0);
		newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"10\" NAME=\"po_"+intLine+"\"  ID=\"po_"+intLine+"\" ></center>";

		//*** Column 2 ***//
		newCell = newRow.insertCell(1);
		//newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><input type=\"text\" size=\"10\" name=\"po_date"+intLine+"\" id=\"datepicker"+intLine+"\"  ></center>";
		
		newCell = newRow.insertCell(2);
		newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><INPUT TYPE=\"FILE\" SIZE=\"10\" NAME=\"filePO_"+intLine+"\" ID=\"filePO_"+intLine+"\"  ></center>";
		document.checkform.hdnMaxPO.value = intLine;
	}
}
  </script>
</head>
<body>
 
<td height="38" align="center" valign="middle">Po.NO.</td>
<td align="center" valign="middle">Po. Date</td>
<td align="center" valign="middle">file</td>
<td align="center" valign="middle"><input name="btnCreate1" type="button" id="btnCreate1" value="+" onclick="CreatePO();"/></td>
 
 <input type ="hidden" name="hdnMaxPO" value="0"/>
</body>
</html>




Tag : PHP









ประวัติการแก้ไข
2014-05-02 11:57:31
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2014-05-02 11:54:11 By : Freeland View : 918 Reply : 13
 

 

No. 1



โพสกระทู้ ( 5,149 )
บทความ ( 26 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


ถ้านี่คือโค้ดทั้งหมดของท่าน ผมว่าได้แก้อีกเยอะครับ เท่าที่มองดูสคริปผ่าน ๆ

ถ้าไม่ใช่โค้ดทั้งหน้านี้ ก็ช่วยลงฉบับเต็มจะดีกว่าครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 13:01:19 By : deawx
 


 

No. 2



โพสกระทู้ ( 93 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 1 เขียนโดย : deawx เมื่อวันที่ 2014-05-02 13:01:19
รายละเอียดของการตอบ ::
อันนี้โค้ด ทั้งหมดครับ พอมีวิธีอื่นไหมครับที่สามารถเรียกใช้ปฏิทินได้ หรือว่าจะต้องแก้อย่างเดียว


Code (PHP)
<!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=utf-8" />
<title>Vendor</title>
<?php
include("config.php");
session_start() ;
if (!isset($_SESSION['login_true'])) {
     header("Location: index.php");
     exit;
}
     $idS = $_SESSION['send'];
	 $sql_d = "SELECT * FROM sup WHERE id_ven = '$idS' ";
    $sql_r = mysql_query($sql_d);
    $objResult = mysql_fetch_array($sql_r);
?>

<title>E-local customer</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css">
<link rel="stylesheet" href="styles_page.css" type="text/css" />
<SCRIPT language="javascript"> 
  $(function() {
	 $( "#datepicker" ).datepicker();
    $( "#datepicker1" ).datepicker();
	$( "#datepicker2" ).datepicker();
	$( "#datepicker3" ).datepicker();
	$( "#datepicker4" ).datepicker();
	$( "#datepicker5" ).datepicker();
  });

function CreateIN()
	{
		var intLine = parseInt(document.checkform.hdnMaxIN.value);
		intLine++;
		if(intLine<=5){
		var theTable = document.all.dataIN
		var newRow = theTable.insertRow(theTable.rows.length)
		newRow.id = newRow.uniqueID

		var newCell
		
		//*** Column 1 ***//
		newCell = newRow.insertCell(0);
		newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"10\" NAME=\"invoice_"+intLine+"\"  ID=\"invoice_"+intLine+"\" ></center>";

		//*** Column 2 ***//
		newCell = newRow.insertCell(1);
		newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><INPUT TYPE=\"FILE\" SIZE=\"10\" NAME=\"fileIN_"+intLine+"\" ID=\"fileIN_"+intLine+"\" ></center>";
		document.checkform.hdnMaxIN.value = intLine;
	}
}

function RemoveIN()
	{
		intLine = parseInt(document.checkform.hdnMaxIN.value);
		if(parseInt(intLine) > 0)
		{
				theTable = document.getElementById("dataIN");				
				theTableBody = theTable.tBodies[0];
				theTableBody.deleteRow(intLine);
				intLine--;
				document.checkform.hdnMaxIN.value = intLine;
		}	
	}	
	
function CreatePO()
	{
		var intLine = parseInt(document.checkform.hdnMaxPO.value);
		intLine++;
		if(intLine<=5){
		var theTable = document.all.dataPO
		var newRow = theTable.insertRow(theTable.rows.length)
		//newRow.id = newRow.uniqueID

		var newCell
		
		//*** Column 1 ***//
		newCell = newRow.insertCell(0);
		newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"10\" NAME=\"po_"+intLine+"\"  ID=\"po_"+intLine+"\" ></center>";

		//*** Column 2 ***//
		newCell = newRow.insertCell(1);
		//newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><input type=\"text\" size=\"10\" name=\"po_date"+intLine+"\" id=\"datepicker"+intLine+"\"  ></center>";
		
		newCell = newRow.insertCell(2);
		newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><INPUT TYPE=\"FILE\" SIZE=\"10\" NAME=\"filePO_"+intLine+"\" ID=\"filePO_"+intLine+"\"  ></center>";
		document.checkform.hdnMaxPO.value = intLine;
	}
}

function RemovePO()
	{
		intLine = parseInt(document.checkform.hdnMaxPO.value);
		if(parseInt(intLine) > 0)
		{
				theTable = document.getElementById("dataPO");				
				theTableBody = theTable.tBodies[0];
				theTableBody.deleteRow(intLine);
				intLine--;
				document.checkform.hdnMaxPO.value = intLine;
		}	
}	


 </script>
</head>

<body>

<div id="container">

<div id="container-inner">

	<div id="header">
    	<h1><a href="home_vender.php"><img src="img/800px-Logo.png" width="284" height="74" border ="0"/></a></h1>
        <div class="clear"></div>
    </div><!-- end header -->
    
   
    
    <div id="banner"><!-- end slogan --><!-- end nav -->

    </div><!-- end banner -->
    

    <div id="main">
      <form action="upload.php" method="post" enctype="multipart/form-data" name="checkform" id="checkform"  onsubmit="return check()">
      <script language="javascript">
	  document.onkeydown = chkEvent
	  function chkEvent(e)
	  {
			var keycode;
			if(window.event) keycode = window.event.keyCode;
			else if (e) keycode = e.which;
			if(keycode==13) { return false; }	  
	  }
	  </script>
        <table width="900" border="0" align="center" cellspacing="1">
          <tr>
            <td width="224" align="left" valign="top">Supplier Company Name</td>
            <td colspan="2" align="left" valign="top"><input name="supname" type="text" id="supname" value="<?=$objResult['name']?>" size="50" readonly="readonly" /></td>
            <td width="224" align="left" valign="top">Supplier Tax No.</td>
            <td width="260" colspan="2" align="left" valign="top"><input name="sup_tax" type="text" id="sup_tax" value="<?=$objResult['tax_no']?>" size="20" readonly="readonly" /></td>
          </tr>
          <tr align="left" valign="top">
            <td>Address</td>
            <td colspan="2"><input name="address" type="text" id="address" value="<?=$objResult['address'];?> ต.<?=$objResult['s_district'];?> อ.<?=$objResult['district'];?> จ.<?=$objResult['provinee'];?> <?=$objResult['postcode'];?>" size="55" readonly="readonly" /></td>
            <td>E-mail supplier</td>
            <td colspan="2"><font color="#FF0000">
              <input name="email_sup" type="text" id="email_sup" value="<?=$objResult['email']?>" size="45" readonly="readonly" />
            </font></td>
          </tr>
          <tr align="left" valign="top">
            <td>Tel.</td>
            <td colspan="2"><label for="tel"></label>
              <input name="tel" type="text" id="tel" value="<?=$objResult['tel'];?>" size="20" readonly="readonly" />
              <label for="in_no"></label></td>
            <td>Attention Name</td>
            <td colspan="2"><input name="att_n" type="text" id="att_n" size="20" /></td>
          </tr>
          <tr align="left" valign="top">
            <td>E-mail Attention</td>
            <td colspan="2"><input name="email_att" type="text" id="email_att" size="20" /></td>
            <td>E-mail Attention1</td>
            <td colspan="2"><label for="textfield138"></label>
            <input type="text" name="email_att1" id="email_att1" /></td>
          </tr>
          <tr align="left" valign="top">
            <td>Delivery Date</td>
            <td colspan="2"><input name="date_del" type="text" id="datepicker" /></td>
            <td>ภพ.20</td>
            <td><input name="pp_no" type="text" id="pp_no" size="10" /></td>
            <td><input name="filePP" type="file" id="filePP" size="15" /></td>
          </tr>
          <tr align="left" valign="top">
            <td colspan="6" align="center" valign="middle"><table width="400" border="1" align="center" cellspacing="1" id="dataIN">
              <tr>
                <td width="211" align="center" valign="middle">Invoice No.</td>
                <td width="87" align="center" valign="middle">file</td>
                <td width="88" align="center" valign="middle"><input name="btnCreate1" type="button" id="btnCreate1" value="+" onclick="CreateIN();"/>
                  <input name="btnRemove1" type="button" id="btnRemove1" value="-" onclick="RemoveIN();" /></td>
              </tr>
            </table></td>
          </tr>
          <tr align="left" valign="top">
            <td colspan="6" align="center" valign="middle"><table width="417" border="1" align="center" cellspacing="1" id="dataPO">
              <tr>
                <td height="38" align="center" valign="middle">Po.NO.</td>
                <td align="center" valign="middle">Po. Date</td>
                <td align="center" valign="middle">file</td>
                <td align="center" valign="middle"><input name="btnCreate1" type="button" id="btnCreate1" value="+" onclick="CreatePO();"/>
                  <input name="btnRemove1" type="button" id="btnRemove1" value="-" onclick="RemovePO();" /></td>
              </tr>
            </table></td>
          </tr>
        </table>
        <table id="dataTable" width="900" height="37" border="1" align="center">
          <tr>
            <td width="341" height="31" align="center" valign="top">Description (ชนิดของ)</td>
            <td width="81" align="center" valign="top">Quantity</td>
            <td width="115" align="center" valign="top"> Price/Unit (bath)</td>
            <td width="111" align="center" valign="top">Amount Price</td>
            <td width="100" align="center" valign="top">Weight (Kg.)</td>
            <td align="center" valign="top">Packaging</td>
          </tr>
        </table>
        <table width="700" border="0" align="right" cellspacing="1">
          <tr>
            <td width="103" align="right" valign="top">Total Price(bath)</td>
            <td width="103" align="right" valign="top">Total Weight (Kg.)</td>
            <td width="27" align="right" valign="top">Total Packaging</td>
            <td width="13" align="right" valign="top">Total Quantity</td>
            <td width="14" align="right" valign="top">&nbsp;</td>
          </tr>
          <tr>
            <td align="right" valign="top"><label for="total_pack"></label>
              <input name="total_p" type="text" id="total_p" size="8" /></td>
            <td align="right" valign="top"><input name="total_w" type="text" id="textfield3" size="5" /></td>
            <td align="right" valign="top"><label for="total_pack"></label>
            <input name="total_pack" type="text" id="total_pack" size="5" /></td>
            <td align="right" valign="top"><label for="total_qty"></label>
            <input name="total_qty" type="text" id="total_qty" size="5" /></td>
            <td align="right" valign="top"><input type="submit" name="button" id="button" value="Submit" />
              <input name="btnCreate" type="button" id="btnCreate" value="+" onclick="CreateNewRow();" />
              <input name="btnDel" type="button" id="btnDel" value="-" onclick="RemoveRow();" />
              <input type="hidden" name="hdnMaxLine" value="0" />
              <input type="hidden" name="hdnMaxIN" value="0" />
              <input type="hidden" name="hdnMaxPO" value="0" />
            </td>
          </tr>
        </table>
        <p>&nbsp;</p>
      </form>
      <p>&nbsp;</p>
	  <p>&nbsp;</p>
	  <p>&nbsp;</p>
	  <p>&nbsp;</p>
	  <p>&nbsp;</p>
	  <p>&nbsp;</p>
	  <p>&nbsp;</p>
	  <p>&nbsp;</p>
	  <p>&nbsp;</p>
	  <p>&nbsp;</p>
	  <p><!-- end sidebar -->
	    
      </p>
	  <div class="clear"></div>
        
    </div><!-- end main -->
    
    </div><!-- end container-inner -->
    
</div><!-- end container -->

<div id="footer">
	<p>&nbsp;</p>
</div>
<!-- end footer -->

</body>
</html>








ประวัติการแก้ไข
2014-05-02 13:12:04
2014-05-02 13:38:26
2014-05-02 13:39:43
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 13:10:54 By : Freeland
 

 

No. 3



โพสกระทู้ ( 2,258 )
บทความ ( 5 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook Hi5 Blogger

อ้างอิง class เข้าถึงได้ทุก input ไม่จำกัดครับ
เวลาเรียกไม่ต้องเรียก ไอดี เพราะถ้าเรียก แบบไอดี จะต้องไล่ประกาศทั้งหมด

Code (PHP)
<inpuy type='text' name='txtdate[]' id='datepicker1' class='txtdate'>
<inpuy type='text' name='txtdate[]' id='datepicker2' class='txtdate'>
<inpuy type='text' name='txtdate[]' id='datepicker3' class='txtdate'>
<inpuy type='text' name='txtdate[]' id='datepicker4' class='txtdate'>
<inpuy type='text' name='txtdate[]' id='datepicker5' class='txtdate'>


เช่น

Code (JavaScript)
$("#datepicker1,#datepicker2,#datepicker3,#datepicker4,#datepicker5").datepicker();


เราสามารถเรียกผ่าน class เลย เช่น

Code (JavaScript)
$(".txtdate").datepicker(); 


แค่นี้ทุก input ที่มี class = txtdate ก็จะใช้ datepicker ได้แล้ว
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 13:44:31 By : Manussawin
 


 

No. 4



โพสกระทู้ ( 93 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 3 เขียนโดย : Manussawin เมื่อวันที่ 2014-05-02 13:44:31
รายละเอียดของการตอบ ::
ต้องแก้ไข ตรงไหนครับ รบกวนหน่อยนะครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 13:50:42 By : Freeland
 


 

No. 5



โพสกระทู้ ( 2,258 )
บทความ ( 5 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook Hi5 Blogger

กำหนด class='txtdate' หรือจะตั้งชื่ออะไรก็ได้ครับ ใน <input>

เช่น

<inpuy type='text' name='txtdate[]' id='datepicker1' class='txtdate'>

เวลาเรียกใช้ก็

$(".txtdate").datepicker();
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 14:02:16 By : Manussawin
 


 

No. 6



โพสกระทู้ ( 93 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 5 เขียนโดย : Manussawin เมื่อวันที่ 2014-05-02 14:02:16
รายละเอียดของการตอบ ::

Code (PHP)
<SCRIPT language="javascript"> 
$(function() {
	 $( "#datepicker,#datepicker1,#datepicker2,#datepicker3,#datepicker4,#datepicker5" ).datepicker();
         $(".txtdate").datepicker();
  });

.
.
.
.

newCell = newRow.insertCell(1);
		newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><input type=\"text\" size=\"10\" name=\"po_date"+intLine+"\" id=\"datepicker"+intLine+"\"  class=\"txtdate\"></center>";
 </script>


ใช่แบบนี้ป่ะครับ



ประวัติการแก้ไข
2014-05-02 14:08:49
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 14:08:10 By : Freeland
 


 

No. 7

Guest



แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 14:39:59 By : WiTT
 


 

No. 8



โพสกระทู้ ( 93 )
บทความ ( 0 )



สถานะออฟไลน์


ยังทำไม่ได้เลยครับ รบกวนผู้รู้หน่อยนะครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 15:14:26 By : Freeland
 


 

No. 9

Guest


ลองเอา
Code (PHP)
$( "#datepicker"+intLine).datepicker();


ไปต่อท้าย CreatePO()

เวลามีการเพิ่มแถวมันจะได้เพิ่ม event ของ datepicker ให้กับแถวนั้นด้วย

ถ้าเรียกใช้แบบนี้
Code (PHP)
$(function() {
$(".txtdate").datepicker();
$( "#datepicker1" ).datepicker();
$( "#datepicker2" ).datepicker();
$( "#datepicke3" ).datepicker();
$( "#datepicker4" ).datepicker();
$( "#datepicker5" ).datepicker();
});


มันจะทำงานเท่าที่มี แต่แถวที่เพิ่มทีหลังจะไม่ทำงาน
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 15:16:30 By : โปรแกรมมั่ว
 


 

No. 10



โพสกระทู้ ( 93 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 9 เขียนโดย : โปรแกรมมั่ว เมื่อวันที่ 2014-05-02 15:16:30
รายละเอียดของการตอบ ::

ต่อยังไงครับ งง


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 15:33:21 By : Freeland
 


 

No. 11



โพสกระทู้ ( 437 )
บทความ ( 3 )



สถานะออฟไลน์


Code (PHP)
function CreatePO()
	{
		var intLine = parseInt(document.checkform.hdnMaxPO.value);
		intLine++;
		if(intLine<=5){
		var theTable = document.all.dataPO
		var newRow = theTable.insertRow(theTable.rows.length)
		//newRow.id = newRow.uniqueID

		var newCell
		
		//*** Column 1 ***//
		newCell = newRow.insertCell(0);
		newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"10\" NAME=\"po_"+intLine+"\"  ID=\"po_"+intLine+"\" ></center>";

		//*** Column 2 ***//
		newCell = newRow.insertCell(1);
		//newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><input type=\"text\" size=\"10\" name=\"po_date"+intLine+"\" id=\"datepicker"+intLine+"\"  ></center>";
		
		newCell = newRow.insertCell(2);
		newCell.id = newCell.uniqueID;
		newCell.setAttribute("className", "css-name");
		newCell.innerHTML = "<center><INPUT TYPE=\"FILE\" SIZE=\"10\" NAME=\"filePO_"+intLine+"\" ID=\"filePO_"+intLine+"\"  ></center>";
		document.checkform.hdnMaxPO.value = intLine;

                $( "#datepicker"+intLine).datepicker();
	}
}

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 15:42:44 By : randOmizE
 


 

No. 12



โพสกระทู้ ( 5,105 )
บทความ ( 4 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


อันนี้ไม่เกี่ยวกับ code นะ datepicker ที่ว่านะ
แต่เป็น html5 อ่านเจอมา อยากเอามาแชร์

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<body>
<form>
วันที่แบบ HTML5<input type="date" name="txtDate">
</form>
</body>
</html>


ลองเอาไป test ดู (ยังไม่ได้เล่นจริงจังเลยได้เป็น ค.ศ.)
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 15:49:39 By : apisitp
 


 

No. 13



โพสกระทู้ ( 93 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 11 เขียนโดย : randOmizE เมื่อวันที่ 2014-05-02 15:42:44
รายละเอียดของการตอบ ::


ได้แล้วครับ ขอบคุณมากๆ ครับ ^^


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-05-02 15:52:05 By : Freeland
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ใส่ function ปฏิทิน ในการเพิ่มแถวใหม่ รบกวนช่วยดูหน่อยนะครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 03
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่