我有一个页面,用户可以在其中编辑他输入的关于自己的信息。这是代码:
<html>
<head>
<title></title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
</head>
<body dir="rtl">
<?php echo form_open('profile/edit'); ?>
<h5>الاسم الكامل</h5>
<input type="text" name="fullname" value="<?php echo $fullname; ?>" />
<h5>الايميل</h5>
<input type="text" name="email" value="<?php echo $email; ?>" />
<h5>الجوال</h5>
<input type="text" name="mobile" value="<?php echo $mobile; ?>" />
<h5>هاتف</h5>
<input type="text" name="telephone" value="<?php echo $telephone; ?>" />
<h5>العنوان</h5>
<input type="text" name="address" value="<?php echo $address; ?>" />
<h5>نبذة عني</h5>
<textarea rows="4" cols="50" name="about" value="<?php echo $about; ?>"> </textarea>
<br><br>
<div><input type="submit" value="Submit" /></div>
</form>
</body>
</html>
现在,当我提交时,它向我显示了这些错误:
我不知道发生了什么。这只发生在我提交带有编辑数据的表单时。否则,它首先会在字段中加载正确的详细信息。
非常感谢您的帮助::)