I ran into one problem for about 2 hours. Can someone give a solution that I will appreciate.
http://mydowmin.com/userdatapage.php Note: I do not want to access this outside world of the page using the Curl function
how to avoid this script
$ch=curl_init("http://mydowmin.com/userdatapage.php");
curl_setopt ($ch,CURLOPT_CERTINFO,1);
curl_setopt ($ch,CURLOPT_VERBOSE,1);
curl_exec($ch) or die;
print_r( curl_getinfo($ch) );
http://mydomain.com/datapage.php
I want to block the page for curling and file_get_contentfor access to the side. If you access this URL directly in the browser, it should be executed, but should not work in the Curl and Fgc functions.
source
share