Skip to content
Advertisement

echoing a result from the database with php only returns 1 result

I’m trying to get results from a database and return the data to my page.

I have 2 files, findtask, and functions. In functions I have some code that grabs all my data from the table. I then used a while loop to grab the stuff if I echo the results from the functions script it returns as it should id 1 2 and 3, my issue starts when trying to get the result from findtask script that only gets last result.

JavaScript

My findtask page is

JavaScript

This one will only turn the last id for some reason.

What is wrong and how can this be fixed?

Advertisement

Answer

It will only return last id since you are setting data to equal row

JavaScript

So each row you replace it with the last one.

I guess you want an array instead, so you could do:

JavaScript

then to print out all tasks:

JavaScript

This would give you an array of results.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement