I don't understand you, but i think u need some app to tell you, if GD is
installed or not ?, if is that what u need, then put this code.

<?php
ob_start();
phpinfo(8);
$phpinfo=ob_get_contents();
ob_end_clean();
$phpinfo=strip_tags($phpinfo);
if (stristr($phpinfo,"gd version")) {
    echo "GD installed";
} else {
    echo "GD NOT installed";
}
?>

Regards,
EF.

"Todd Cary" <[EMAIL PROTECTED]> escribió en el mensaje
news:[EMAIL PROTECTED]
> Wouldn't I then have to scan the results?  I use phpinfo() to checks the
> client's installation, but I would like to do it within the app.
>
> Todd
>
> Esteban Fernandez wrote:
>
> ><?php phpinfo(); ?>
> >
> >"Todd Cary" <[EMAIL PROTECTED]> escribió en el mensaje
> >news:[EMAIL PROTECTED]
> >
> >
> >>Is there a way to check within an application if the "gd" library has
> >>been installed?
> >>
> >>Todd
> >>-- 
> >>
> >>
> >>
> >
> >
>
>---------------------------------------------------------------------------
-
> >----
> >
> >
> >
> >
> >>Is there a way to check within an application if the "gd" library has
been
> >>
> >>
> >installed?
> >
> >
> >>Todd
> >>
> >>-- 
> >>
> >>
> >>
> >
> >
> >
> >
> >
>
> -- 
>
>


----------------------------------------------------------------------------
----


> Wouldn't I then have to scan the results?  I use phpinfo() to checks the
client's installation, but I would like to do it within the app.
>
> Todd
>
> Esteban Fernandez wrote:
>
> <?php phpinfo(); ?>
>
> "Todd Cary" <[EMAIL PROTECTED]> escribió en el mensaje
> news:[EMAIL PROTECTED]
>   Is there a way to check within an application if the "gd" library has
> been installed?
>
> Todd
> -- 
>
>
>
> --------------------------------------------------------------------------
--
> ----
>
>
>   Is there a way to check within an application if the "gd" library has
been
>     installed?
>   Todd
>
> -- 
>
>
>
>
>
>
> -- 
>
>



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

Reply via email to