views:

27

answers:

1

Hi there,

Looking around my understanding is Sencha is purely JS based. Wondering if there is any way for me to use content from PHP + myslq driven website?

Cheers rd

+1  A: 

In short: yes, through XMLHttpRequests to your server. Sencha Touch is a Javascript framework that runs on your frontend, since it's mobile probably on the phone your'e targeting. PHP (& MySQL) runs on a backend, your server. Your phone app would then access the website where the PHP-app runs and fetch/store data, probably through a RESTful API.

Jacob Oscarson