<?php
function image_createfromany($file){
	if(is_file($file) && is_array($image_info = getimagesize($file))){
...

PHP On Thumbnail generator

by JWvdV, November 06, 2007 17:43

Perhaps you can use this......

584799d026024e108d87aeceb51804d3 Talk
<?php
function secure_input(&$v) {
    if(is_array($v)) foreach($v as $i => $a) secure_input($v[$i]);
...

PHP On making user html input secure

by JWvdV, October 20, 2007 14:30
584799d026024e108d87aeceb51804d3 Talk

PHP On FTPSocket

by JWvdV, October 20, 2007 14:19

@techietim:
PHP.NET doesn't...

584799d026024e108d87aeceb51804d3 Talk
<?php
class FTPSocket {
	var $connection;
...

PHP FTPSocket

by JWvdV, October 09, 2007 20:44, 2 refactorings

Any thoughts on this?
Miss...

584799d026024e108d87aeceb51804d3 Talk

PHP On handling GET and POST in a ...

by JWvdV, October 06, 2007 06:14

@Don: I completely agree wi...

584799d026024e108d87aeceb51804d3 Talk