14/09/2023How to remove X-Powered-By EasyEngine 4 (EE4)Step 1: Step 2: Edit file version.conf and remove add_header X-Powered-By “EasyEngine v4.6.6 Step 3: Restart docker
21/02/2024Allow upload csv file for wordpressFunction allow upload csv file for wordpres in function.php
27/09/2021DevOps roadmapDepOps là gì? DevOps là một sự kết hợp của các nguyên lý, thực hành, quy trình và các tool giúp […]
21/04/2020Format number with Javascriptfunction formatNumber(num) { return num.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1,') } console.info(formatNumber(2665)) // 2,665 console.info(formatNumber(102665)) // 102,665 console.info(formatNumber(111102665)) // 111,102,665
14/12/2019How do you use bcrypt for hashing passwords in PHP?use password_hash() to create a bcrypt hash of any password: password_hash('yourPassword', PASSWORD_DEFAULT); use password_hash() to create a bcrypt hash of […]
24/06/2020Kiểu dữ liệu trong SQLKiểu dữ liệu trong SQL định nghĩa một kiểu giá trị mà một cột có thể chứa. Trong một bảng, […]