如何在CodeIgniter的form_open函數中編寫表單ID? (我需要使用CSS的ID)。 例如,這是簡單的HTML:Codeigniter form_open指定id
<form method="post" action="" id="my_form">
我想下面的代碼,但它不工作:
<?php echo form_open('my_form'); ?>
感謝。
如何在CodeIgniter的form_open函數中編寫表單ID? (我需要使用CSS的ID)。 例如,這是簡單的HTML:Codeigniter form_open指定id
<form method="post" action="" id="my_form">
我想下面的代碼,但它不工作:
<?php echo form_open('my_form'); ?>
感謝。
http://ellislab.com/codeigniter/user_guide/helpers/form_helper.html
$attributes = array('id' => 'myform');
echo form_open('email/send', $attributes);
您還可以使用:
echo form_open('controller/method',array('id'=>$id,'method'=>'post'))
echo form_open('controller/method',array('id'=>$id,'method'=>'post'))
請考慮在您的代碼中添加解釋。儘管對你來說這可能是不言而喻的,但其他人可以從一些附加說明中獲益,例如*爲什麼*和*代碼如何解決問題。 – Magisch 2016-10-13 06:02:13
你應該在下一次研究更進德用戶指南。 http://codeigniter.com/user_guide/helpers/form_helper.html – Chumillas 2011-06-06 09:15:54