5

I'm looking to host simple web apps on my smartphone in a group (like a LAN party, just not as hardcore).
Because of both lack of portability and lack of specific programming skills, I can't just develop a client app to play. Therefore, I need a server - preferably an HTTP one - which can serve dynamic content. I already found many servers to host static files, and I also found a few servers supporting PHP as a scripting language, but I couldn't find any app that did all these things at once:

  • Be a server, i.e. support connections from the local network;
  • Serve dynamic content, i.e. parse and execute scripts which I can edit;
  • Is free for personal use.
ale
  • 19,723
  • 34
  • 110
  • 159

2 Answers2

4

AndroPHP looks like it'll fill your needs quite nicely.

You can...

  • Deply dynamic PHP content
  • Serve pages over LAN
  • Use a MySQL Database

Heck, this'd be awesome for all sorts of events. Have people whip out their phones, navigate to your locally hosted signup form, etc, then export the mysql tables out later.

dotVezz
  • 3,642
  • 1
  • 23
  • 34
3

That unfortunately needs some 3rd party app, as there's no "native" feature included with Android. Apps you might wish to check for this purpose include:

Izzy
  • 91,166
  • 73
  • 343
  • 943
  • upvote for you sir! :D \o/ – t0mm13b Feb 05 '14 at 21:30
  • All of these except AndroPHP look like trialware (is that a word?). – trysis Apr 20 '14 at 02:03
  • @trysis So you can find out if they fit your needs, and then buy the full version. Anything wrong with that? ;) – Izzy Apr 20 '14 at 05:06
  • No, it's just the OP said he only wanted free versions and someone already called out the other answerer for including free versions. The OP didn't say anything about trials, though. – trysis Apr 20 '14 at 21:47
  • Right. That's why my answer has one free candidate (to fulfill the request); think of the others as "something to consider as well". If they offer significant improvements, they might be worth the money. And after all, this answer is not just for the one who asked – for others, the "free" part might be a "nice-to-have", as they care more for the problem to be solved ;) – Izzy Apr 21 '14 at 11:57