Welcome Guest, Not a member yet? Register   Sign In
How to copy images from an external URL to my localhost
#2

[eluser]n0xie[/eluser]
Use curl?

Using Phil's Curl library as an example:
Code:
$this->load->library('curl');
$this->load->helper('file');

$img = $this->curl->simple_get("http://img149.imageshack.us/img149/4185/stickynotes.png");

if ( ! write_file("./public/stickynotes.png", $img))
{
  echo 'unable to write the file';
}


Messages In This Thread
How to copy images from an external URL to my localhost - by El Forum - 10-25-2010, 06:03 AM
How to copy images from an external URL to my localhost - by El Forum - 10-25-2010, 06:43 AM
How to copy images from an external URL to my localhost - by El Forum - 10-25-2010, 01:39 PM



Theme © iAndrew 2016 - Forum software by © MyBB