nublet Posted January 30, 2009 Share Posted January 30, 2009 Hi, I found this piece of code on the internet to save images from urls. if ($_GET[xfer]) { if ($_POST[from] == "") { print "You forgot to enter a url."; } else { copy("$_POST[from]", "$_POST[to]"); $size = round((filesize($_POST[to])/1000000), 3); print "transfer complete.<br> <a><a href=\"$_POST[from]\">$_POST[from]</a><br> <a><a href=\"$_POST[to]\">$_POST[to]</a> : $size MB"; } } else { print "<form action=\"$PHP_SELF?xfer=true\" method=post> from(http://): <input name=from><br> to(filename): <input name=to><br> <input type=submit value=\"transload\">"; } and I was wondering how you would make it save to a specific directory and save the name in sql? Link to comment https://forums.phpfreaks.com/topic/143126-upload-from-url/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.