up vote 0 down vote favorite
share [g+] share [fb]

I create dropdown fields to show the data from a MySQL database. Everytime when I key in new data, it must refresh to read the new data. I know Ajax can do it as well. But any other idea to solve this problem without refreshing to get the new data? Just when new data key in, it will auto renew without pressing F5 or refresh.

This is my code:

<th  style="width:25%"><font><div align="left">Select Product :</div></font>
    <?php echo $form->input('Product',array(
        'label'    => 'Select Products',
        'options'  => $products,
        'id'       => 'product',
        'style'    => 'width:250px;height:100px',
        'selected' => $html->value('Product.Product'),
        'onchange' => 'List();')); ?>
</th>
<th >
link|improve this question

40% accept rate
feedback

3 Answers

I think at that point your only option is to get a magical update fairy which performs updates without performing updates.

Seriously though, Ajax isn't that hard for something this simple.

link|improve this answer
feedback

There is such thing as comet. With use of it you can make action to happen in browser by the server side's willing.

link|improve this answer
How to make it? – JaYwzx Wong Nov 12 '09 at 7:21
feedback

The only way to do this without a refresh is with Ajax (httpRequest). There is, of course, the possibility, that you put your select box into an iFrame and refresh only this, but I think that's bad practice. Why wouldn't you use Ajax?

link|improve this answer
Cause i not familier in ajax. So ask get any other way.. – JaYwzx Wong Nov 12 '09 at 6:41
Use javaScript libraries like jquery (jquery.com) - it's really not that hard! – Pesse Nov 12 '09 at 10:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.