Conversion from site to application [closed]

0

What is the best way to 'convert' a website (with cakePHP) to an android app.

I would like to convert with all the functions and the databases to be 'synchronized'

The functions it has are basically those of a normal CRUD, but the CRUD of the application would have to be related to the same site database

    
asked by anonymous 23.03.2015 / 20:41

1 answer

2

The very best alternative is to create a WebService in PHP as Otto commented. Once you have a functioning WebService you can create a dedicated application of your system functions and synchronize the data via the WebService. To create the application you can use various technologies like:

  • Cordova / PhoneGap / Titanium / Ionic
  • Xamarin
  • QT
  • Dedicated application in each language (native)

In general I recommend creating an application in each language.

If you can wait for some time

23.03.2015 / 21:05