$nudate = explode("-", $rows['date']);
echo $nudate[1]."/".$nudate[2];
MySQL is an open source, relational database management system that runs as a server providing multi-user access to a number of databases. Acquired by Oracle in 2009, it is frequently used in combination with PHP installations, powering most of the WordPress installations.
TRUSTED BY
ASKER
echo date('m/d', $rows['date']);
But it prints out all 12/31 for all records regardless of the actual date being pulled from the db...