PHP On remove http from url string

by Chris Dean, November 15, 2008 23:09 Star_fullStar_fullStar_full

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

151e36cc7f789a4790c8ca437e3a1f60 Talk

PHP On Array To Tablerows

by Chris Dean, October 28, 2008 07:57

Love the one liner, but at ...

151e36cc7f789a4790c8ca437e3a1f60 Talk
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 Star_full

If the only reason for the ...

151e36cc7f789a4790c8ca437e3a1f60 Talk

PHP On Mortgage Calculator

by Chris Dean, October 28, 2008 07:34

Maybe you should post this ...

151e36cc7f789a4790c8ca437e3a1f60 Talk

PHP On Universal File Download Class

by Chris Dean, August 20, 2008 16:20

@Ishkur

I try to avoid bac...

151e36cc7f789a4790c8ca437e3a1f60 Talk
1
2
3
4
<?php

class RequestFile
...

PHP Universal File Download Class

by Chris Dean, August 16, 2008 11:21, 4 refactorings, tagged with php, 5, universal, file, download, class

After finding different hos...

151e36cc7f789a4790c8ca437e3a1f60 Talk

PHP On MySQL original PHP 5 wrappe...

by Chris Dean, August 14, 2008 07:20

I've had a play with doctri...

151e36cc7f789a4790c8ca437e3a1f60 Talk

PHP On Resize image to canvas

by Chris Dean, August 14, 2008 07:00 Star_fullStar_fullStar_fullStar_fullStar_full

I don't see any real issues...

151e36cc7f789a4790c8ca437e3a1f60 Talk
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 Star_fullStar_fullStar_fullStar_fullStar_full

Personally I'd use strtotim...

151e36cc7f789a4790c8ca437e3a1f60 Talk