56klab / qhtml5

Basic Joomla 3.10.x Template
1 stars 1 forks source link

Soluzione definitiva error.php? #52

Open simbus82 opened 10 months ago

simbus82 commented 10 months ago
$curl_handle=curl_init();
curl_setopt($curl_handle, CURLOPT_URL,JURI::root().'/pagina-non-trovata');
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_USERAGENT, 'Your application name');
$query = curl_exec($curl_handle);
curl_close($curl_handle);

echo $query;