2012-10-04 45 views

回答

2

您可以通過發佈數據,當您上傳圖片時發送數據。

有兩種方法可以做到這一點。獲取或發佈數據。


GET

改變形式的action屬性以包括附加參數:

<form action="blueimp/php/index.php?id=2" method="post" enctype="multipart/form-data"> 

訪問變量中的index.php與:

$id = $_GET['id']; 

POST

輸入字段添加到與價值形態,你想通過:

<form action="blueimp/php/index.php" method="post" enctype="multipart/form-data"> 


    <input type="hidden" name="id" value="2" /> 


    <div style="float:left;"> 
    <label class="fileinput-button"> 
     <span>Add Images</span> 
     <input id="fileSelector" type="file" name="files[]" multiple> 
    </label> 
    <button type="button" class="delete">Delete Selected</button> 
    <button type="button" class="checkAll">Check All</button> 
    </div> 
</form> 

訪問變量的index.php中有:

$id = $_POST['id']; 
+0

哇希望它會工作...需要爲此工作一會兒... tnx –

+1

我有這個實施在我的網站上的多個位置。應該像一個治療:) – VictorKilo

+0

其作品...非常感謝很多... –

相關問題