Featured

LGBTQ กู้ร่วมแบบไม่จดทะเบียนสมรสได้แล้ว

83968426_2745250305562765_1246491902635671552_o

ข่าวดี! เอาใจชาว LGBTQ เพราะการกู้ร่วมแบบไม่จดทะเบียนสมรสก็สามารถกู้ได้ แต่จะต้องเตรียมตัว เตรียมอะไรไปบ้าง วันนี้แอดมินมีข้อมูลมาฝากจ้าา

ธนาคารที่มีข้อเสนอสำหรับการกู้ของ LGBTQ ได้แก่ ธนาคารไทยพาณิชย์ และ ธนาคารกสิกรไทย โดยต้องมีคุณสมบัติดังนี้
.
เงื่อนไขการกู้ร่วม
 ผู้กู้ต้องเป็นบุคคลธรรมดา สัญชาติไทย
 ผู้กู้ต้องมีอายุ 20 ปีบริบูรณ์ขึ้นไป และไม่เกิน 65 ปี
 ผู้กู้ต้องไม่เคยเป็นลูกหนี้ปรับโครงสร้างหนี้ของสถาบันการเงิน (ติด Blacklist)
.
เอกสารที่ต้องเตรียม
 สำเนาบัตรประชาชน
 สำเนาทะเบียนบ้าน
 ใบเปลี่ยนชื่อ-นามสกุล (ถ้ามี)
 หนังสือรับรองเงินเดือน (6 เดือน)
 สลิปเงินเดือน
 บัญชีเงินฝากธนาคารย้อนหลัง (6 เดือน)

#หลักฐานในการยื่นกู้เพิ่มเติม
 การแสดงหลักฐานว่าเคยเช่าบ้านอยู่ร่วมกันมานาน 1 ปี (หนังสือสัญญาเช่าบ้าน)
.
ไม่ว่าความสัมพันธ์แบบไหนก็กู้ได้ ไม่ใช่เรื่องยากอีกต่อไป เตรียมเอกสารให้พร้อม แล้วไปยื่นกู้พร้อมกันกันนน

ที่มา Chewathai Kaset – Nawamin

SQL combining multiple rows into one row

Ask Question

SQL query like this;
SELECT y.name as group_name  FROM one_hub.employee_group x LEFT JOIN group_employee y ON y.id = x.id_group_employee 
WHERE id_employee = 88

want result

SELECT group_concat(y.name) as group_name  FROM one_hub.employee_group x LEFT JOIN group_employee y ON y.id = x.id_group_employee 
WHERE id_employee = 88

form SQL Server: combining multiple rows into one row

วิธี โอนเงิน ของ True move h

ตั้งรหัสผ่าน
*665*ววดดปปปป(วันเดือนปีเกิด8หลัก*กำหนดรหัสผ่าน4หลัก# โทรออก
ตัวอย่าง *665*31102530*1234#  โทรออก

เติมเงิน
*666*เบอร์โทรศัพท์10หลัก*จำนวนเงิน*รหัสผ่าน# โทรออก
ตัวอย่าง
*666*091888XXXX*20*1234# โทรออก

ลองทำดูครับ ได้หรือไม่ แจ้งให้ผลด้วยนะครับ

อาจจะมีเงื่อนไขการใช้งานด้วยนะครับ เช่น

-โอนได้ครั้งละ 10 , 20 , 30 , 40 และ 50 บาท
-จํากัดจํานวนไม่เกิน 2 ครั้งต่อวัน
-ยอดเงินที่โอนไปรวมกันไม่เกิน 400 บาทต่อเดือนปฏิทิน
-ทั้งนี้ ไม่สามารถโอนวันคงเหลือได้​
-ระยะเวลาในการใช้งานมาและจำนวนเงินเติมและถูกใช้งานไปแล้ว ไม่น้อยกว่า 200 บาท นับตั้งแต่เปิดเบอร์  พอใช้ครบ 200 บาท ต้องรออีกประมาณ 7 วัน ถึงใช้งานได้

มีค่าใช้บริการครั้งละ 2 บาท (รวมภาษีมูลค่าเพิ่มแล้ว) โดยจะหักค่าใช้บริการจากเงินที่ลูกค้ามีอยู่ในระบบลูกค้าจะต้องมีจํานวนคงเหลือในระบบเพียงพอกับจํานวนเงินที่ต้องการโอนรวมกับค่าใช้บริการ จึงจะสามารถโอนเงินได้ครับ

ที่มา pantip.com

 

IOS devices issues with HTML form input (type = text)

Found the issue, it’s a stylesheet reset I found online to help with touch devices behaviour for when the user touch/ hold an element and I copied it across most of my projects. So if you have this issue, it’s most likely you have these lines in your css:

  *, *:before, *:after {
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
     }

So just remove it or set it to default. And if your intention is to stop people from selecting stuff on your website, then make sure you reset this style property to default on inputs

  input, input:before, input:after {
      -webkit-user-select: initial;
      -khtml-user-select: initial;
      -moz-user-select: initial;
      -ms-user-select: initial;
      user-select: initial;
     }

from webicy

phonegap open link in browser

As suggested in a similar question, use JavaScript to call window.open with the target argument set to _system, as per the InAppBrowser documentation:

<a href="#" onclick="window.open('http://www.yoururl.com', '_system');">www.yoururl.com</a>

This should work, though a better and more flexible solution would be to intercept all links’ click events, and call window.open with arguments read from the link’s attributes.

Remember you must install the InAppBrowser plugin for this to work:

cordova plugin add org.apache.cordova.inappbrowser