> +    header("Content-type: image/png");
> +    $string = implode($argv, " ");

Using $argv to retrieve GET parameters is a not adviced
way today AFAIK. So this should be modified to use something
like $string = $_GET['text'];

Goba



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to