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?