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,038

HOME > PHP > PHP Forum > ขอ code เกี่ยวกับ Javascript Calendar หน่อยค่ะ พี่ ๆ คะพอมี code ของ javascript calendar มั้ยคะ


[PHP] ขอ code เกี่ยวกับ Javascript Calendar หน่อยค่ะ พี่ ๆ คะพอมี code ของ javascript calendar มั้ยคะ

 
Topic : 042632



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



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



พี่ ๆ คะพอมี code ของ javascript calendar มั้ยคะ ที่ใช้สำหรับในการจองห้องพัก

หาใน google ไม่เจอเลย

เอารูปแบบตามรูปอ่ะค่ะ จากวันที่ (สมมุติ 10/5/2010) ถ้าเลือก ถึงวันที่ วันที่อยู่ก่อนวันที่ 10 จะไม่สามารถเลือกได้และกลายเป็นสีเทาทันที

พอมีมั้ยคะ

datepickup



Tag : - - - -

Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-05-10 09:42:43 By : yingnoi View : 6321 Reply : 7
 

 

No. 1



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

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

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

หาๆดูในนี้นะครับมีให้โหลดใช้ง่ายด้วย
http://jqueryui.com/demos/datepicker/
Date : 2010-05-10 10:48:17 By : aknueng
 

 

No. 2



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



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


ไม่เห็นในส่วนที่ต้องการเลยค่ะ
Date : 2010-05-10 13:58:07 By : yingnoi
 

 

No. 3



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



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

datepicker ของ jQuery มันเป็น Tool ที่เค้าสร้างไว้ให้แล้วอะครับ เอามาใช้ได้เลยโดยเข้าไปโหลดเอามาใช้เลยครับ

ส่วนที่ คุณเจ้าหญิงน้อยต้องการ สามารถกำหนดได้ที่ Option ของ datepicker ได้เลยครับ
Date : 2010-05-10 15:03:37 By : newnakab
 

 

No. 4



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



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


คงต้องเขียน เงื่อนไข เชค หละ ผม ว่า
Date : 2010-05-10 16:51:40 By : deathzap
 

 

No. 5



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



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

001.// calendar.js
002. 
003.function positionInfo(object) {
004. 
005.  var p_elm = object;
006. 
007.  this.getElementLeft = getElementLeft;
008.  function getElementLeft() {
009.    var x = 0;
010.    var elm;
011.    if(typeof(p_elm) == "object"){
012.      elm = p_elm;
013.    } else {
014.      elm = document.getElementById(p_elm);
015.    }
016.    while (elm != null) {
017.      x+= elm.offsetLeft;
018.      elm = elm.offsetParent;
019.    }
020.    return parseInt(x);
021.  }
022. 
023.  this.getElementWidth = getElementWidth;
024.  function getElementWidth(){
025.    var elm;
026.    if(typeof(p_elm) == "object"){
027.      elm = p_elm;
028.    } else {
029.      elm = document.getElementById(p_elm);
030.    }
031.    return parseInt(elm.offsetWidth);
032.  }
033. 
034.  this.getElementRight = getElementRight;
035.  function getElementRight(){
036.    return getElementLeft(p_elm) + getElementWidth(p_elm);
037.  }
038. 
039.  this.getElementTop = getElementTop;
040.  function getElementTop() {
041.    var y = 0;
042.    var elm;
043.    if(typeof(p_elm) == "object"){
044.      elm = p_elm;
045.    } else {
046.      elm = document.getElementById(p_elm);
047.    }
048.    while (elm != null) {
049.      y+= elm.offsetTop;
050.      elm = elm.offsetParent;
051.    }
052.    return parseInt(y);
053.  }
054. 
055.  this.getElementHeight = getElementHeight;
056.  function getElementHeight(){
057.    var elm;
058.    if(typeof(p_elm) == "object"){
059.      elm = p_elm;
060.    } else {
061.      elm = document.getElementById(p_elm);
062.    }
063.    return parseInt(elm.offsetHeight);
064.  }
065. 
066.  this.getElementBottom = getElementBottom;
067.  function getElementBottom(){
068.    return getElementTop(p_elm) + getElementHeight(p_elm);
069.  }
070.}
071. 
072.function CalendarControl() {
073. 
074.  var calendarId = 'CalendarControl';
075.  var currentYear = 0;
076.  var currentMonth = 0;
077.  var currentDay = 0;
078. 
079.  var selectedYear = 0;
080.  var selectedMonth = 0;
081.  var selectedDay = 0;
082. 
083.  var months = ['มกราคม','กุมภาพันธ์','มีนาคม','เมษายน','พฤษภาคม','มิถุนายน','กรกฏาคม','สิงหาคม','กันยายน','ตุลาคม','พฤศจิกายน','ธันวาคม'];
084.  var dateField = null;
085. 
086.  function getProperty(p_property){
087.    var p_elm = calendarId;
088.    var elm = null;
089. 
090.    if(typeof(p_elm) == "object"){
091.      elm = p_elm;
092.    } else {
093.      elm = document.getElementById(p_elm);
094.    }
095.    if (elm != null){
096.      if(elm.style){
097.        elm = elm.style;
098.        if(elm[p_property]){
099.          return elm[p_property];
100.        } else {
101.          return null;
102.        }
103.      } else {
104.        return null;
105.      }
106.    }
107.  }
108. 
109.  function setElementProperty(p_property, p_value, p_elmId){
110.    var p_elm = p_elmId;
111.    var elm = null;
112. 
113.    if(typeof(p_elm) == "object"){
114.      elm = p_elm;
115.    } else {
116.      elm = document.getElementById(p_elm);
117.    }
118.    if((elm != null) && (elm.style != null)){
119.      elm = elm.style;
120.      elm[ p_property ] = p_value;
121.    }
122.  }
123. 
124.  function setProperty(p_property, p_value) {
125.    setElementProperty(p_property, p_value, calendarId);
126.  }
127. 
128.  function getDaysInMonth(year, month) {
129.    return [31,((!(year % 4 ) && ( (year % 100 ) || !( year % 400 ) ))?29:28),31,30,31,30,31,31,30,31,30,31][month-1];
130.  }
131. 
132.  function getDayOfWeek(year, month, day) {
133.    var date = new Date(year,month-1,day)
134.    return date.getDay();
135.  }
136. 
137.  this.clearDate = clearDate;
138.  function clearDate() {
139.    dateField.value = '';
140.    hide();
141.  }
142. 
143.  this.setDate = setDate;
144.  function setDate(year, month, day) {
145.    if (dateField) {
146.      if (month < 10) {month = "0" + month;}
147.      if (day < 10) {day = "0" + day;}
148. 
149.      var dateString = month+"-"+day+"-"+year;
150.      dateField.value = dateString;
151.      hide();
152.    }
153.    return;
154.  }
155. 
156.  this.changeMonth = changeMonth;
157.  function changeMonth(change) {
158.    currentMonth += change;
159.    currentDay = 0;
160.    if(currentMonth > 12) {
161.      currentMonth = 1;
162.      currentYear++;
163.    } else if(currentMonth < 1) {
164.      currentMonth = 12;
165.      currentYear--;
166.    }
167. 
168.    calendar = document.getElementById(calendarId);
169.    calendar.innerHTML = calendarDrawTable();
170.  }
171. 
172.  this.changeYear = changeYear;
173.  function changeYear(change) {
174.    currentYear += change;
175.    currentDay = 0;
176.    calendar = document.getElementById(calendarId);
177.    calendar.innerHTML = calendarDrawTable();
178.  }
179. 
180.  function getCurrentYear() {
181.    var year = new Date().getYear();
182.    if(year < 1900) year += 1900;
183.    return year;
184.  }
185. 
186.  function getCurrentMonth() {
187.    return new Date().getMonth() + 1;
188.  }
189. 
190.  function getCurrentDay() {
191.    return new Date().getDate();
192.  }
193. 
194.  function calendarDrawTable() {
195. 
196.    var dayOfMonth = 1;
197.    var validDay = 0;
198.    var startDayOfWeek = getDayOfWeek(currentYear, currentMonth, dayOfMonth);
199.    var daysInMonth = getDaysInMonth(currentYear, currentMonth);
200.    var css_class = null; //CSS class for each day
201. 
202.    var table = "<table cellspacing='0' cellpadding='0' border='0'>";
203.    table = table + "<tr class='header'>";
204.    table = table + "  <td colspan='2' class='previous'><a href='javascript:changeCalendarControlMonth(-1);'>&lt;</a> <a href='javascript:changeCalendarControlYear(-1);'>&laquo;</a></td>";
205.    table = table + "  <td colspan='3' class='title'>" + months[currentMonth-1] + "<br>" + currentYear + "</td>";
206.    table = table + "  <td colspan='2' class='next'><a href='javascript:changeCalendarControlYear(1);'>&raquo;</a> <a href='javascript:changeCalendarControlMonth(1);'>&gt;</a></td>";
207.    table = table + "</tr>";
208.    table = table + "<tr><th>S</th><th>M</th><th>T</th><th>W</th><th>T</th><th>F</th><th>S</th></tr>";
209. 
210.    for(var week=0; week < 6; week++) {
211.      table = table + "<tr>";
212.      for(var dayOfWeek=0; dayOfWeek < 7; dayOfWeek++) {
213.        if(week == 0 && startDayOfWeek == dayOfWeek) {
214.          validDay = 1;
215.        } else if (validDay == 1 && dayOfMonth > daysInMonth) {
216.          validDay = 0;
217.        }
218. 
219.        if(validDay) {
220.          if (dayOfMonth == selectedDay && currentYear == selectedYear && currentMonth == selectedMonth) {
221.            css_class = 'current';
222.          } else if (dayOfWeek == 0 || dayOfWeek == 6) {
223.            css_class = 'weekend';
224.          } else {
225.            css_class = 'weekday';
226.          }
227. 
228.          table = table + "<td><a class='"+css_class+"' href=\"javascript:setCalendarControlDate("+currentYear+","+currentMonth+","+dayOfMonth+")\">"+dayOfMonth+"</a></td>";
229.          dayOfMonth++;
230.        } else {
231.          table = table + "<td class='empty'>&nbsp;</td>";
232.        }
233.      }
234.      table = table + "</tr>";
235.    }
236. 
237.    table = table + "<tr class='header'><th colspan='7' style='padding: 3px;'><a href='javascript:clearCalendarControl();'>Clear</a> | <a href='javascript:hideCalendarControl();'>Close</a></td></tr>";
238.    table = table + "</table>";
239. 
240.    return table;
241.  }
242. 
243.  this.show = show;
244.  function show(field) {
245.    can_hide = 0;
246.   
247.    // If the calendar is visible and associated with
248.    // this field do not do anything.
249.    if (dateField == field) {
250.      return;
251.    } else {
252.      dateField = field;
253.    }
254. 
255.    if(dateField) {
256.      try {
257.        var dateString = new String(dateField.value);
258.        var dateParts = dateString.split("-");
259.         
260.        selectedMonth = parseInt(dateParts[0],10);
261.        selectedDay = parseInt(dateParts[1],10);
262.        selectedYear = parseInt(dateParts[2],10);
263.      } catch(e) {}
264.    }
265. 
266.    if (!(selectedYear && selectedMonth && selectedDay)) {
267.      selectedMonth = getCurrentMonth();
268.      selectedDay = getCurrentDay();
269.      selectedYear = getCurrentYear();
270.    }
271. 
272.    currentMonth = selectedMonth;
273.    currentDay = selectedDay;
274.    currentYear = selectedYear;
275. 
276.    if(document.getElementById){
277. 
278.      calendar = document.getElementById(calendarId);
279.      calendar.innerHTML = calendarDrawTable(currentYear, currentMonth);
280. 
281.      setProperty('display', 'block');
282. 
283.      var fieldPos = new positionInfo(dateField);
284.      var calendarPos = new positionInfo(calendarId);
285. 
286.      var x = fieldPos.getElementLeft();
287.      var y = fieldPos.getElementBottom();
288. 
289.      setProperty('left', x + "px");
290.      setProperty('top', y + "px");
291.  
292.      if (document.all) {
293.        setElementProperty('display', 'block', 'CalendarControlIFrame');
294.        setElementProperty('left', x + "px", 'CalendarControlIFrame');
295.        setElementProperty('top', y + "px", 'CalendarControlIFrame');
296.        setElementProperty('width', calendarPos.getElementWidth() + "px", 'CalendarControlIFrame');
297.        setElementProperty('height', calendarPos.getElementHeight() + "px", 'CalendarControlIFrame');
298.      }
299.    }
300.  }
301. 
302.  this.hide = hide;
303.  function hide() {
304.    if(dateField) {
305.      setProperty('display', 'none');
306.      setElementProperty('display', 'none', 'CalendarControlIFrame');
307.      dateField = null;
308.    }
309.  }
310. 
311.  this.visible = visible;
312.  function visible() {
313.    return dateField
314.  }
315. 
316.  this.can_hide = can_hide;
317.  var can_hide = 0;
318.}
319. 
320.var calendarControl = new CalendarControl();
321. 
322.function showCalendarControl(textField) {
323.  // textField.onblur = hideCalendarControl;
324.  calendarControl.show(textField);
325.}
326. 
327.function clearCalendarControl() {
328.  calendarControl.clearDate();
329.}
330. 
331.function hideCalendarControl() {
332.  if (calendarControl.visible()) {
333.    calendarControl.hide();
334.  }
335.}
336. 
337.function setCalendarControlDate(year, month, day) {
338.  calendarControl.setDate(year, month, day);
339.}
340. 
341.function changeCalendarControlYear(change) {
342.  calendarControl.changeYear(change);
343.}
344. 
345.function changeCalendarControlMonth(change) {
346.  calendarControl.changeMonth(change);
347.}
348. 
349.document.write("<iframe id='CalendarControlIFrame' src='javascript:;' frameBorder='0' scrolling='no'></iframe>");
350.document.write("<div id='CalendarControl'></div>");


//////////////////////////////////////////////////////////////////////////////////////////////////

001.//calendar.css
002. 
003.#CalendarControlIFrame {
004.  display: none;
005.  left: 0px;
006.  position: absolute;
007.  top: 0px;
008.  height: 250px;
009.  width: 250px;
010.  z-index: 99;
011.}
012. 
013.#CalendarControl {
014.  position:absolute;
015.  background-color:#FFF;
016.  margin:0;
017.  padding:0;
018.  display:none;
019.  z-index: 100;
020.}
021. 
022.#CalendarControl table {
023.  font-family: arial, verdana, helvetica, sans-serif;
024.  font-size: 8pt;
025.  border-left: 1px solid #336;
026.  border-right: 1px solid #336;
027.}
028. 
029.#CalendarControl th {
030.  font-weight: normal;
031.}
032. 
033.#CalendarControl th a {
034.  font-weight: normal;
035.  text-decoration: none;
036.  color: #FFF;
037.  padding: 1px;
038.}
039. 
040.#CalendarControl td {
041.  text-align: center;
042.}
043. 
044.#CalendarControl .header {
045.  background-color: #336;
046.}
047. 
048.#CalendarControl .weekday {
049.  background-color: #DDD;
050.  color: #000;
051.}
052. 
053.#CalendarControl .weekend {
054.  background-color: #FFC;
055.  color: #000;
056.}
057. 
058.#CalendarControl .current {
059.  border: 1px solid #339;
060.  background-color: #336;
061.  color: #FFF;
062.}
063. 
064.#CalendarControl .weekday,
065.#CalendarControl .weekend,
066.#CalendarControl .current {
067.  display: block;
068.  text-decoration: none;
069.  border: 1px solid #FFF;
070.  width: 2em;
071.}
072. 
073.#CalendarControl .weekday:hover,
074.#CalendarControl .weekend:hover,
075.#CalendarControl .current:hover {
076.  color: #FFF;
077.  background-color: #336;
078.  border: 1px solid #999;
079.}
080. 
081.#CalendarControl .previous {
082.  text-align: left;
083.}
084. 
085.#CalendarControl .next {
086.  text-align: right;
087.}
088. 
089.#CalendarControl .previous,
090.#CalendarControl .next {
091.  padding: 1px 3px 1px 3px;
092.  font-size: 1.4em;
093.}
094. 
095.#CalendarControl .previous a,
096.#CalendarControl .next a {
097.  color: #FFF;
098.  text-decoration: none;
099.  font-weight: bold;
100.}
101. 
102.#CalendarControl .title {
103.  text-align: center;
104.  font-weight: bold;
105.  color: #FFF;
106.}
107. 
108.#CalendarControl .empty {
109.  background-color: #CCC;
110.  border: 1px solid #FFF;
111.}


วิธีใช้
01.<html>
02.<head>
03.    <link rel="stylesheet" type="text/css" href="calendar.css"/>
04.    <script type="text/javascript" src="calendar.js"></script>
05.</head>
06.<body>
07.   
08.  <input type="text" onfocus="showCalendarControl(this);" style="cursor:pointer;"/>
09. 
10. 
11.</body>
12.</html>

Date : 2010-05-10 17:00:29 By : kalamell
 

 

No. 6

Guest


คัยพอทราบวิธีการทำให้โค้ดปฏิทินอันนี้มันคลิกย้อนหลังไม่ได้บ้างค่ะ
ขอบคุณมากค่ะ

Code (PHP)
001.<?
002.  $mon=$_POST['mon'];
003.  $a = date(j); // , 1 to 31
004.  $b = date(a); // am,
005.  $c = date(A); // AM,
006.  $d = date(B); // Swatch Internet time 000 -999
007.  $e = date(d); // , 01 to 31
008.  $f = date(D); // , sat
009.  $g = date(F); // , November
010.  $h = date(g); // , 1 through 12
011.  $hh = date(G); // , 0 through 23
012.  $i = date(h); // , 01 through 12
013.  $j = date(H); // , 00 through 23
014.  $k = date(i); // , 00 to 59
015.  $l = date(I); // 0, 1 if Daylight Savings Time, 0 otherwise.
016.  $m = date(l); // , Sunday through Saturday
017.  $n = date(L); // 0, 1 if it is a leap year, 0 otherwise.
018.  $o = date(m); // , 01 through 12
019.  $p = date(M); // , Jan through Dec
020.  $q = date(n); // , 1 through 12
021.  $r = date(o); // Example: +0200
022.  $s = date(r); // Example: Thu, 21 Dec 2000 16:01:07 +0200
023.  $t = date(s); // 00 through 59
024.  $u = date(S); // st, nd, rd or th. Works well with j
025.  $v = date(t); // 28 through 31
026.  $w = date(T); // time zoneseting Examples: EST, MDT ...
027.  $x = date(u); // See also time()
028.  $y = date(w); // 0 (for Sunday) through 6 (for Saturday)
029.  $z = date(W); // Example: 42 (the 42nd week in the year)
030.  $aa = date(y); // Examples: 99 or 03
031.  $bb = date(Y); // Examples: 1999 or 2003
032.  $cc = date(z);
033.  $dd = date(Z);
034.if(!$mon){
035.  $mon = $o ;
036.}else{
037.  $mon = $mon ;
038.}
039.if(!$year){
040.  $year = $bb ;
041.}else{
042.  $year = $year;
043.}
044.  $firstday = mktime(0,0,0,$mon,1,$bb);
045.  $firstdays = date('w',$firstday);
046.  $lastdays = date('t',$firstday);
047.  $year_view = date('Y',$firstday);
048.  $mon_view = date('m',$firstday);
049.echo"
050.<script>
051.function d_s( su , mnp){
052.if(mnp == 'm'){
053.document.dat_form.mon.value = su - 1 ;
054.}else{
055.document.dat_form.mon.value = su + 1 ;
056.}
057.document.dat_form.submit();
058.}
059.</script>
060.<form name=dat_form action='$PHP_SELF' method=post>
061.<input type=hidden name=mon value=''>
062.<table border=2 width=600 cellpadding=2 cellspacing=-2 bordercolor=#42C1FF>
063.<tr bgcolor=#FFCCCC>
064.<td colspan=7 align=center><a href=\"javascript:d_s($mon,'m')\"> Last Month.<< </a>&nbsp;$year_view - $mon_view <a href=\"javascript:d_s($mon,'p')\" > Next Month.>></a></td>
065.</tr>
066.</form>
067.<tr align=center><td><font Tahoma size=3 color=#FF0000>อาทิตย์</a></td><td><font Tahoma size=3color=#FFFF00>จันทร์</a></td><td><font Tahoma size=3 color=#FF66CC>อังคาร</a></td><td><font Tahoma size=3 color=#00CC00> &nbsp;&nbsp;พุธ&nbsp;&nbsp; </a></td><td><font Tahoma size=3 color=#FF6600>พฤหัสฯ</a></td><td><font Tahoma size=3 color=#00CCFF>ศุกร์</a></td><td><font Tahoma size=3 color=#6600CC>เสาร์</font></td></tr>
068.<tr align=right>";
069.////
070.for($i = 0; $i < 7 ; $i++){
071.if($firstdays == $i){
072.break;
073.}
074.else{
075.echo"<td width8=>&nbsp;</td>";
076.}
077.$week++;
078.}
079.for($i=1; $i<=$lastdays ;$i++){
080.if($week % 7 == 0){
081.echo"</tr><tr align=right>";
082.}
083.if($a == $i){
084.$bgcolor = "bgcolor=#FFCCCC";
085.}else{
086.$bgcolor = 'bgcolor=white';
087.}
088.if($week%7==0){
089.echo"<td $bgcolor><font Tahoma size=3 color=white><a href='Reservation_Select.php?day=$i&mon=$mon&year=$year'>$i</a></font></td>";
090.}else if($week%7==6){
091.echo"<td $bgcolor><font Tahoma size=3 color=white><a href='Reservation_Select.php?day=$i&mon=$mon&year=$year'>$i</a></font></td>";
092.}else{ //
093.echo"<td $bgcolor><font Tahoma size=3><a href='Reservation_Select.php?day=$i&mon=$mon&year=$year'>$i</a></font></td>";
094.}
095.$week++;
096.}
097.while($week%7!=0){
098.echo"<td>&nbsp;</td>";
099.$week++;
100.}
101.echo"</tr>
102.</table>
103.";
104.?>

Date : 2011-12-26 14:22:56 By : ไม่ไหวจะเคลียร์
 

 

No. 7

Guest


อิอิ
http://www.electricprism.com/aeron/calendar/
นี่ครับตามความต้องการ
Date : 2012-03-27 11:20:22 By : test
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ขอ code เกี่ยวกับ Javascript Calendar หน่อยค่ะ พี่ ๆ คะพอมี code ของ javascript calendar มั้ยคะ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)





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