| # | name | register date |
|---|---|---|
| 1 | มาตรฐานการออกแบบเว็บไซต์ | 2019-03-28 00:00:00 |
| 2 | PHP OOP | 2019-03-28 00:00:00 |
| 3 | PHP Manual | 2019-06-14 00:00:00 |
| 4 | Digital Marketing 2019 !importan | 2019-06-14 00:00:00 |
| 5 | contentshifu.com - สอน Digital Margeting | 2019-06-14 00:00:00 |
| 6 | สอนเขียน AI ! importan | 2019-06-14 00:00:00 |
| 7 | ขายของออนไลน์ E-Commerce แตะยอดขายหลักล้านใน 4 เดือน | 2019-06-21 00:00:00 |
| 8 | PHP Thai Date Function | 2019-06-21 00:00:00 |
| 9 | Taicreate สอนเขียน JAVA | 2019-06-22 09:37:51 |
| 10 | สอน Python GUI ด้วย tkinter | 2019-06-22 10:48:07 |
| 11 | Python Penetration Testing Tutorial | 2019-06-23 23:46:22 |
| 12 | Chatbot Line ด้วย Dialogflow :: Medium | 2019-06-24 10:27:57 |
# คอร์สเรียนออนไลน์ Free
https://www.datacamp.com/
https://www.techtalkthai.com/8-vulnerability-exploitation-tools/
@echo off
color 2
:start
echo %random% %random% %random%
goto start
USE Command: attrib /?
attrib -r -a -s -h /s /d
1. run cmd as Administrator
2. slmgr -rearm -> Enter
3. Restart your computer.
Credit: https://www.ninenik.com/สร้างฟังก์ชัน_autocomplete_ให้ใช้งานแบบง่าย_ด้วย_ajax-209.html Credit: http://www.thaicreate.com/community/autocomplete-ajax-php-mssql.html
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button>
<div id="myModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Modal Header</h4>
</div>
<div class="modal-body">
<p>Some text in the modal.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
Ref. https://www.w3schools.com/bootstrap/bootstrap_modal.asp
<script>
function loadDoc() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML =
this.responseText;
}
};
xhttp.open("GET", "ajax_info.txt", true);
xhttp.send();
}
</script>
Ref. https://www.w3schools.com/js/tryit.asp?filename=tryjs_ajax_first