PHP CURL coding


 <?php
$ch= curl_init();



$url ="www.domain.com";
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT,5);


$curl_result=curl_exec($ch);
curl_close($ch);
$curl_result=str_replace("<","<",$curl_result);
$curl_result=str_replace(">",">",$curl_result);
echo $curl_result;
?>

Stuck Installing Joomla On Windows 8 and Windows 10

SOLUTION ONE:
Change max_execute_time in php.ini to a value like 200 when done or when in production change it back to 60 or less.

SOLUTION TWO:
CHANGE MYSQL ENGINE REFERENCE
in php.ini file turn
Output_Buffering=Off Display_Errors=Off and in wamp\www\Your joomla folder\installation\sql\mysql\Joomla.sql replaced all the occurence of "ENGINE=InnoDB" with "ENGINE=MyIsam"

SOLUTION THREE:
If changing max_execute_time or replacing InnoDB didn't work for you, try to install it in different browser like IE or Opera if you've run it in Chrome & Firefox already.