Creaza un fisier php nou si denumeste-l function-check.php cu urmatorul continut:
COD: SELECTAŢI TOT
<?php
// Check if we have fsockopen
if(function_exists('fsockopen'))
{
echo 'fsockopen is available.<br />';
}
else
{
echo 'fsockopen is NOT available.<br />';
}
// Check if we have file_get ...