Retrieving and dissecting MYSQL data from WWW

I am having troubles dissecting the data that I receive from my database through PHP. Basically what I want to do is after I have received the data, I want to assign each row to their respective variables in a for loop until they are all in a variable. In PHP, this can be easily done through:

if($result->num_rows > 0){
	while($row = $result->fetch_assoc()){
		echo $row['item_ID'];
		echo $row['item_name'];
		
	}
}

But I have no idea how this can be done through unity using WWW or some other means. I am assuming I have to use WWW.data?

Use WWW to talk to your server and have your PHP talk to the MySQL database and retrieve the data.

DID YOU SOLVED YOUR PROBLEM WE ARE HAVING THE SAME ISSUE OR SIMILAR!!

we want Retrieve multiple images from MySql database via Unity C#

we have made it, so we can consult and show in unity with php and c# the data (text) but no the images. the images are transfer in base64, but we can“t transform or show base64 into the image itself.

help knockknock@creativemediadesign.com.mx