Search Results

1
vote
7answers
5k views

Format mysql datetime with php

Column in mysql database named CreateDate, need to format to mm/dd/yy H:M (AM/PM) with PHP syntax …
4
votes

How do I track file downloads with apache/PHP

Use your httpd log files. Install http://awstats.sourceforge.net/ …
1
vote

Best way to access Exchange using PHP ?

I would look into IMAP http://us3.php.net/imap …
0
votes

Php error_reporting, Best setting for development? E_STRICT ?

ini_set("display_errors","2"); ERROR_REPORTING(E_ALL); …
0
votes

How do I sort a multidimensional array in php

I prefer to use array_multisort http://us2.php.net/manual/en/function.array-multisort.php …
2
votes

Format mysql datetime with php

This worked the best for me: $datetime = strtotime($row->createdate); $mysqldate = date("m/d/y g:i A", $datetime); …