标题说我有一个文本框和一个表。每当我在文本框中放置任何字符时,我希望表更新
我的文字框:
<form action="registration/popup_find" method="get">
<div class="form-group">
<label class="sr-only" for="value">Search</label>
<input type="text" class="form-control" name="value" id="value" placeholder="Search..." value="<?php echo $this->input->get('value'); ?>">
</div></form>
我的桌子:
<table class="table table-hover">
<tr>
<th>No Registrasi</th>
<th>Tgl Registrasi</th>
<th>Nama Pasien</th>
<th>No Hospital</th>
<th>Actions</th>
</tr>
<?php
$index = 0;
foreach ($registration as $value) :
echo Modules::run("registration/registration_table", $value, $index);
$index++;
endforeach;
?>
</table>
怎么做??