Is it possible to create an Android application and Website using PHP with a common database in the Parse.com server?
Suggest me related to the parse server itself because I have already created an Android Application using parse server. Now I need to create a back-end web application as an admin website to manage the mobile application user's data. Since I am familiar with PHP it would be easy for me.
Related
I already have a web app that uses raw PHP to access a database. Now I want to create a mobile app using react-native, that will be a mobile version of the web app, thus use the same database. What is the best way to implement the mobile app?
You can create a Rest API both for your web app and mobile app. So they can share same logic as backend.
I'm currently building a new project that needs a web app and mobile app and i'm forced to work with Laravel and React Native.
So my question is if I can connect between the two app's using MySQL ?
PS: I already searched and i did find this topic here, but i didn't get the idea clear.
Laravel can be just a backend and React-Native is a front-end. Your React-Native can talk to a Laravel backend without any problem or can share a database such as MySQL, it is no different then using a Node, ASP.NET, Ruby or even a Perl backend for your React-Native app to serve a REST API and connect to a database.
Not knowing the details of your website, I would look to build a REST API that can be used by React, React-Native (iOS android, or both) and the laravel based website. Certain features like authentication should easily work cross platform, other API calls may need to be tailored to Mobile vs Web. The backend can be Laravel or any other system include Node as long as it is a REST API, both the site and app will be able to use it.
I'm having a hard time on choosing which platform will I be using in creating a separate web app and database. What could be the possible and more easier to use in creating a separate web app and database? I'm thinking of using PHP for the web app and the database server will be python. Is it gonna be convenient? Or should I use only the php for web app and connect it to the separated database server?
I am developing an iOS application that will be communicating with a PHP/MySQL web service to send/receive data. My plan is to also have a website that has similar functionality to the iOS application and will also interact with the web service. Should I be using a framework to build this web service (I am thinking about Laravel)? Is it a good idea to have the web service separate from the website?
Thanks.
If you are building a native application and requires connection to your website or collecting info, I suggest you to build you own API to access the data from ios using json.
I am attempting to make an iPad application that is a front end for an open source web application written almost exclusively in PHP. How can I access the data from the PHP? The only way I could think of is editing the PHP to encode the arrays and info in JSON then get that in the application, however this would not be very portable as the web application would have be changed.
The web application is called phpvirtualbox and the source code is available here.