How to get result_array values from db using script?.please help me. Thank you. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to get result_array values from db using script?.please help me. Thank you.

I'm trying to get result array value without reloading a page using script. I'm working in codeigniter.

25th Sep 2018, 1:22 AM
kiruthika
1 Answer
0
If you are using client side js, you could use AJAX requests or JQUERY. If you are in a node environment, most database modules are async and can return the array once it is done fetching the data. If you are familiar with promises that is exactly what you are looking for, the array would resolve the promise and just run a promise.then or a promise.all to write the data somewhere.
23rd Oct 2018, 4:02 AM
Brandon
Brandon - avatar