是否可以使用PHP中的src参数上传图像?

时间:2010-09-14 10:05:57

标签: php vbscript file-upload

我知道这个问题可能是错误的。无论如何,我想知道是否有可能? 我使用VBscript作为客户端语言,PHP作为服务器端语言。通过使用VBscript,我从扫描仪获得了一个图像,该图像存储在本地系统中。我希望将其移动到服务器而无需客户选择文件。登记/> When the scan is completed I display the image in the Image tag using the VB script。图像显示在表单中。如果用户提交表单,我想将图像存储在server.So is it possible to upload a image using any method without client need to choose browse button
提前致谢。

2 个答案:

答案 0 :(得分:2)

不可能。
由于明显的安全原因。

答案 1 :(得分:1)

我认为您需要创建一个HTTP POST请求,其中图像编码为基本64字符串(这是您发布带有图像上传的表单时发生的情况)。一个AJAX请求是最好的我不确定你是否可以用VBScript做到这一点。

这个问题可能对您有所帮助: Base64 Encode String in VBScript

这篇文章 http://www.bigresource.com/PHP-decoding-base64-into-an-image-EQvGWPIX.html