protecting my web site content from external
        Posted  
        
            by Testadmin 
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Testadmin 
        
        
        
        Published on 2010-05-25T05:21:55Z
        Indexed on 
            2010/05/25
            5:31 UTC
        
        
        Read the original article
        Hit count: 227
        
Hai
I heard about external access of a web site using curl by the following code
$curl_handle=curl_init(); curl_setopt($curl_handle,CURLOPT_URL,'http://example.com'); $buffer=curl_exec($curl_handle); curl_close($curl_handle);
I want to protect my web site from this external access. I am using Php. how will I protect my web site? Does any one know?
© Stack Overflow or respective owner