Hey, I am using DATETIME for my column for my database. I am trying to find the best way to format this date held in the row using PHP. I tried using date() but that would just print the current date. My row looks something like:
$row['date_added']
Any ideas?
A couple options.
As an example of #3:
Just follow the documentation on date() to construct a format string to your liking and swap it in.