我想在codeigniter中重新填充表单中的上传字段,这是我的代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php if(isset($upload_error) && !empty($upload_error)): ?>
<p><?php echo $upload_error ?></p>
<?php endif; ?>
<?php echo validation_errors() ?>
<?php echo form_open_multipart('') ?>
Enter title: <br>
<input type="text" name="title" value="<?php echo set_value('title') ?>" > <br><br>
Enter Content:<br>
<textarea cols="40" rows="5" name="content"><?php echo set_value('content') ?></textarea> <br><br>
<input type="file" name="userfile" size="20" value="<?php echo set_value('userfile') ?>"> <br><br>
<input type="submit" name="submit">
</form>
</body>
</html>
我在set_value
中尝试了userfile
,但它没有奏效。请告诉我该怎么做
答案 0 :(得分:0)
你不能出于安全原因。如果没有预先安排,浏览器就无法访问用户文件系统。