Home | Scripts | Tutorials | Books | Hosting | Forums | Links|

Navigation:

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Books
Sample Chapters
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links






 
 

SPONSORS



 
Does GD exist
 

 

A common question is does gd exist on my server so I can use in a PHP example. This script will help you out, upload it and then open in your browser to check whether GD exists.

 

<?php
if(!function_exists("gd_info"))
print "GD is not installed on this server";
if(function_exists("gd_info")) print "GD <b>is</b> installed on this server!";
?>