My colleague create application (web application) for PC that access MySQL database.
The application display temperature of each incubator plus also display notes about the baby including mother name of baby, baby height, baby weight, baby birthday and baby gender.
I create mobile app by MIT app Inventor to access data in the MySQL database to display temperature of each incubator plus notes of baby in Listview, but I got issue when data for notes of baby is input with comma then I got extra new record which I expected data with comma could be accepted as a single record.
So I need advice how to solve this issue.
To more understand about this issue I will give simulation of the issue with small app as follow:
This is table test that have fields: field1 and field2.
How to resolve this issue so my app could display any data including data with comma.
As information I created app as the following display as your reference.
Thanks.
Already work after change from ElementString to Element.
And also change php script from :
print "field1 : " . "$field1" . "\n";
print "field2 : " . "$field2" . ",";
To be
print "field1 : " . "$field1" . "\n";
print "field2 : " . "$field2" . "\n";
print "\n";
I am sorry I change the app to be able to display 1 record in database table as 1 element.
But there is issue on the last record that display blank row as the following screenshot.