简简单单,开心就好

Monatsarchiv für November 2009

Gd library
Monday, den 9. November 2009

How to know whether is the GD library enable at server end? can use php info or the below script: GD library cheecking: <? showGDinformation(); function showGDinformation() { echo “GD support on your server: “; // Check if the function gd_info exists (great way to know if gd is istalled) if(function_exists(“gd_info”)) { echo “YES”; $gd [...]

Gd library
Monday, den 9. November 2009

How to check whether GD enabled at your server or not?! Can try out the belwo script: GD library cheecking: <? showGDinformation(); function showGDinformation() { echo “GD support on your server: “; // Check if the function gd_info exists (great way to know if gd is istalled) if(function_exists(“gd_info”)) { echo “YES”; $gd = gd_info(); // [...]

Gd library
Monday, den 9. November 2009

How to check whether GD enabled at your server or not?! Can try out the belwo script: GD library cheecking: <? showGDinformation(); function showGDinformation() { echo “GD support on your server: “; // Check if the function gd_info exists (great way to know if gd is istalled) if(function_exists(“gd_info”)) { echo “YES”; $gd = gd_info(); // [...]