Flex 2和PHP上传文件
<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" initialize="init();" width="200" height="150"><mx:Script><!]></mx:Script><mx:Canvas width="100%" height="100%"><mx:VBox width="100%" horizontalAlign="center"></mx:VBox><mx:Button label="上传文件" click="upload();" y="91"/><mx:Label id="lbProgress" text="上传" x="87.5" y="26"/></mx:Canvas></mx:Application><!-- saved from url=(0014)about:internet --><html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>upload</title><body scroll="no"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"id="fileupload" width="200" height="150"codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab"><param name="movie" value="fileupload.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#869ca7" /><param name="allowScriptAccess" value="sameDomain" /><embed src="fileupload.swf" quality="high" bgcolor="#869ca7"width="200" height="150" name="fileupload" align="middle"play="true"loop="false"quality="high"allowScriptAccess="sameDomain"type="application/x-shockwave-flash"pluginspage="http://www.adobe.com/go/getflashplayer"></embed></object></body></html>
<?php// Flash 传递的文件表单 name 属性为 Filedata$fileName = $_FILES["Filedata"]["name"];$file = $_FILES["Filedata"]["tmp_name"];$path = "uploadFiles/";if (move_uploaded_file($file, $path . $fileName)){ echo 1;}else{ echo 0;}?>
页:
[1]