Recent content by toolboxnz

  1. T

    MySQL Articles

    My website contains a whole bunch of articles about various bit and bobs including MySQL, PHP, Linux, Apache etc. The MySQL articles section has the most in it at the moment and is the most popular section of the site. I have articles about running update and delete queries while joining...
  2. T

    GD Libraries

    If you have PHP 4.3.0 or higher you can see what GD support is compiled in using gd_info eg: print '<pre>'; print_r(gd_info()); print '</pre>'; This will give you something along the lines of: Array ( [GD Version] => bundled (2.0.23 compatible) [FreeType Support] => 1...
  3. T

    ImageMagick from PHP

    You can also use the GD library functions if the are compiled into PHP. Refer to the PHP manual which has some excellent examples: http://www.php.net/manual/en/ref.image.php http://www.php.net/imagecopyresized http://www.php.net/imagecopyresampled I have found from my own testing that...
Back
Top