Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用ci-presenter 库制作表单,我想使用 set_value() 函数。我如何从演示者那里使用它。
我需要在输入和 textarea 字段上设置值。
考虑到所有表单信息都在演示者身上,我是否可以在视图中添加一些内容。
嘿,您需要在表单文本字段中设置这样的值。
<input type="text" class="text" name="email" value="<?php echo set_value('email'); ?>"
我将 set_value() 函数作为参数传递给演示者调用。