Category Archives: random stuff
Curl Function Usage in PHP
function get_contents($url){ $ch = curl_init(); curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_TIMEOUT, 1000); $file_contents = curl_exec($ch); curl_close($ch); return $file_contents; }
Posted in random stuff
Leave a comment
generating preview wordpress comment – Google Search
Has anyone else noticed with wordpress blogs, in the comment section you are allowed to hover your mouse over the commenter’s link and a preview done by wordpress shows up? Even though mine is mainly advertisement I still think this … Continue reading
Posted in random stuff
Leave a comment
