Android Question can i directly assign a list from the following php list ?

Addo

Well-Known Member
Licensed User
Longtime User
i have the following php file that located on my webserver

PHP:
$itemName = "somevalue";
//This value will be generated with new line
echo ($itemName."\n");
echo ($itemName."\n");
echo ($itemName."\n");
echo ($itemName."\n");
echo ($itemName."\n");
echo ($itemName."\n");

can i use httpjob to grab this php file and directly assign its data to a List ?

should i use regex ? or there is simpler way to assign those line directly to the list ?
 

DonManfred

Expert
Licensed User
Longtime User
I would return a json from php and parse this json.....
 
Upvote 0
Top