Most of the websites now give you an option to either upload image or download it from a URL. Ever wondered how they copy that image from that URL? Here is how
Syntax
1
2
3
4
5
|
<?php
$url = "http://koonk.com/images/logo.png";
$rename = "koonk.png";
imagefromURL($url,$rename);
?>
|
0 comments:
Post a Comment