Quote:
Originally Posted by Ted S
Actually I just need to fix a few lines of code so the cURL option is better checked. Soon soon...
|
How about checking for cURL...etc and then either hiding the selection if its not or making it unselectable?
PHP Code:
<?php
echo 'Curl: ', function_exists('curl_version') ? 'Enabled' : 'Disabled' . '
file_get_contents: ', file_get_contents(__FILE__) ? 'Enabled' : 'Disabled';
?>