help to extract image from url
help to extract image from url
Collapse
X
-
This is the second post where you've given the smallest piece of information.
In future you're going to have to give more details of your problem.
You cannot 'extract an image from url' but you can pass the image name in the url then use $_GET (i said all this in your last post) to get the name.
Example url:
Then use php's $_GETCode:http://example.com/some/dir/?image_name=img1.jpg
[php]
$img = $_GET['image_name'];
echo $img;
[/php] -
The image is attached to the mail. It is not sent through the URL.Originally posted by lushnato extract image--i mean like in face book -www.facebook.co m--,in mail compose, there is share link,where the image is displayed with reference to the web link...Comment
Comment