CodeIgniter Forums
form_dropdown and image load - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: form_dropdown and image load (/showthread.php?tid=31168)



form_dropdown and image load - El Forum - 06-09-2010

[eluser]benfike[/eluser]
Hi!

I want to make this: if I select something from the dropdown list, load image for the selected on the page, so the admin can see what he select.

So I have an newspictures table in my database(ID,status,name,image).

In the dropdown I make a list by name. But I want to show the image when someone choose one from the list.

Code:
<? if(set_value('img_id')){
$value = set_value('img_id');
}else{
$value = $post['img_id'];
}
echo form_dropdown('img_id',$images,$value);
?>

I hope you understand it Big Grin

Please helpTongue


form_dropdown and image load - El Forum - 06-09-2010

[eluser]vitoco[/eluser]
with o without realoading the page ??
//
either way ( unless you use a submit button ) you must attach the javascript event onChange to the dropdown, so it loads the image ( via ajax ) or reload the page sending the img id in the uri as parameter.

Saludos