Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to put my php file?

I am trying to make a sign up activity on android and I am using a mysql database to store the data. On all the examples I have seen the http post goes to a ip address and then finds the php file. Can I just put the php file somewhere in the android app folder and access it from there, or do I have to find a host for it?

like image 479
SketchyTurtle Avatar asked Mar 19 '14 00:03

SketchyTurtle


2 Answers

The php code, specially for tasks such as sign up, should never be placed on the client side or embedded with the front end application, but instead be placed on the server side hidden from the user for the sake of safety of your database/application. If you are only considering to put your php with your Android app together for the case you need to test it, and eventually doesn't have access to a server, you may then consider using Google App Engine, as it allows you to emulate a server locally without the need of a server. Here you find some info about Amazon's RDS.

You can put you php in the same directory you place your index.html file, i.e. in the root public directory of your domain. To load it to the Amazon, you can use the cPanel or the Filezilla or any other panel you wish among the options Amazon put available for their users.

In the case Amazon doesn't provide a place to put your php, as a suggestion, you can get a host that allows you to have a static ip accessing it thorough an easy to remember url address - for free. It is quite useful specially for making tests. Still if you decide at some point to have a personalized domain name registered, there are also some other good options to compare.

like image 129
Avanz Avatar answered Sep 28 '22 06:09

Avanz


You dont need jQuery, when doing the POST request,PHP connects to the database get the data and return it to your app.

So to answer your question you should put the PHP in the same server where mysql runs.

like image 34
meda Avatar answered Sep 28 '22 06:09

meda