Uploading Files To Web Server Without Using FTP - VB.NET -
application stores data in database , want able create remote backup. however, client's network blocks ftp.
know there must way upload files server without ftp dropbox application works fine on system, i'm unsure method is. i've tried google haven't had success.
out there can me.
in advance,
craig
you can use php script on server move file , in vb.net upload it
my.computer.network.uploadfile("local path","remote location")
then php side
<?php if (!empty($_files["file"])){ move_uploaded_file($_files["file"]["tmp_name"],"images/" . $_files["file"]["name"]); ?>
Comments
Post a Comment