Monthly Archives: November 2011

PHP: Get URL Content Using PHP Curl

/* gets the data from a URL */ function get_data($url) { $ch = curl_init(); $timeout = 5; curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout); $data = curl_exec($ch); curl_close($ch); return $data; } Source: http://davidwalsh.name/download-urls-content-php-curl

Posted in Languages | Tagged , | Leave a comment

Netgear: Using WNDR3700 as Wireless Access Point

Basic Configuration WNDR3700 needs to be configured using its installation CD After it is set to factory default, its default IP is 192.168.1.1 Access Point Setup Plug your Internet connection into the WAN port (yellow) on the WNDR3700 Power cycle … Continue reading

Posted in Networking | Leave a comment