1 2 3 4
<?php function unique_file($prefix, $suffix) { ...
PHP On Generate a numbered file name
by Chris Dean,
October 28, 2008 07:48
If the only reason for the ...
PHP On Universal File Download Class
by Chris Dean,
August 20, 2008 16:20
@Ishkur
I try to avoid bac...
1 2 3 4
<?php class RequestFile ...
PHP Universal File Download Class
by Chris Dean,
August 16, 2008 11:21,
3 refactorings, tagged with php, 5, universal, file, download, class
After finding different hos...
PHP On MySQL original PHP 5 wrappe...
by Chris Dean,
August 14, 2008 07:20
I've had a play with doctri...
1 2 3 4
function addSecondsToTimestamp ($_timestamp, $_amount) {
$time = strtotime($_timestamp) + $_amount;
return date('Y-m-d H:i:s', $time);
...
PHP On Adding seconds to a MySQL t...
by Chris Dean,
August 06, 2008 07:52
Personally I'd use strtotim...


I'd go with fain182's solut...