Any tutorial explain how to connect Ionic app with Mysql database?

any tutorial explain how to connect Ionic app with Mysql database??

MySQL is not supported on mobile devices. If you are referring to accessing a MySQL db on a remote server, then that would be done usually through some REST api written in PHP or the like. You would access that via standard AJAX calls.

If you are looking at local SQL style storage, look at the SQLStorage plugin. There is write up about on the Ionic Blog.

I Thank You for your quick response
there’s tutorial he talking about that?

http://blog.ionic.io/screencast-ionic-and-sqlite/

thank u, but i asked about the REST api and how to use it to connect ionic and mysql

Just like how you do it in normal AngularJS with $http since Ionic uses AngularJS.

Hello
how to write code to connect ionic app with mysql database in php remote access.

you need to create restfull api for you to connect your app to remote service… I manage to create api using slim framework…