1 min read How to convert php date into mysql format September 16, 2013 Nikunj K0 1. MySQL column datatype is “DATE” $date = date(‘Y-m-d’, strtotime(str_replace(‘-‘, ‘/’, $date))); 2. MySQL column datatype is “DATETIME”: $date = date(‘Y-m-d H:i:s’, strtotime(str_replace(‘-‘, ‘/’, $date))); Share your Love
2 mins read Database ACID Properties: Basic Example of Atomicity and Consistency June 25, 2024June 25, 2024 Nikunj K0
5 mins read Database MySQL ACID Model: Improve Data Integrity and Reliability June 17, 2024June 18, 2024 Nikunj K0