skip to Main Content

MySQL DATE_FORMAT "%d" issue – Phpmyadmin

I'm sure there's a logic to this, but I do not understand it date_format(date, '%m.%d.%Y') // Output: 03.05.2021 date_format(date, '%D.%m.%Y') // Output: 5th.03.2021 date_format(date, '%e.%m.%Y') // Output: 5.03.2021 But date_format(date, '%d.%m.%Y') // Output: 28.02.2021 There seems to be an issue…

VIEW QUESTION

Codeigniter 3 MySQLi Secure db connection – PHP Versions

Recently my db team upgraded db for encrypted connection. And Our portal built with using Codeigniter 3 started throwing below error. Severity: Warning Message: mysqli::real_connect(): (HY000/3159): Connections using insecure transport are prohibited while --require_secure_transport=ON. Filename: mysqli/mysqli_driver.php Line Number: 203 Previously…

VIEW QUESTION
Back To Top
Search