1
Answer

How to Integrate PHP and Mysql DATA to IONIC FRAMEWORK 3?

Hema Sundar

Hema Sundar

7y
243
1
HI i need to integarte my website data which in my app using ionic framework but how to get data from site to app . i know to use json but can anyone help me sample code just like user login page for app ? thanks in advance
Answers (1)
0
Administrator

Administrator

Admin 2.3k 1.3m 21y
Hi, String strXML = "0001"; XmlTextReader objTR = new XmlTextReader(new StringReader(strXML)); objTR .Read(); byte[] buffer = new byte[1]; while(objTR .ReadBase64(buffer,0,1) != 0) { Console.Write(buffer[0]); } What exactly do you want to do with the XML once you have received it? Have you tried XmlDataDocument? I use that for most of my XML processing as it gives me a lot more control over accessing individual nodes, or collections of nodes. Cheers,