這就是表單代碼:CakePHP的:獲取數據陣列的價值形式
<h2>Upload your file from here</h2>
<form method="post" enctype="multipart/form-data" action="<?php echo WEBSITE_PATH; ?>users/enter_text" id="si_upload_form">
<input type="file" name="file" class="home_single_upload">
</form>
創建隱藏字段來顯示時間和文件名
<?php
echo $this->Form->hidden('time_val',array('value' => '','id'=>'time_val'));
echo $this->Form->hidden('filename_val',array('value' => '','id'=>'filename_val'));
?>
我怎樣才能在檢索值隱藏的形式。我希望它設置在一個變量中,並顯示它。
'$ _POST ['time_val']' – ElefantPhace
是否可以將其設置爲像$ myTime這樣的變量? –
是的。只是試試 – ElefantPhace