Local SQLite data via PHP? to my web server

I’m a lone wolf here and can’t find a way or understand it.
How do I get data from my local app and SQLite onto the server so that a PC can access it later?
Can someone please help me with a simple example?
Many thanks from Germany

You want to put it into a text file or Sql database. I can provide samples of either.

Oh, that will be very good. By working weekend I think, it will only work, when the App came from my server. But I prefor tu run as a lokal app.
Is that possible?

Can you explain a bit more?

Yes :slight_smile:

I like best my App running as native App on the device.
Give it a way, to send from that Data via LAN or the phoneprovider to my
Standard PC with Windows?

I don’t found it.

My Data are in a local SQLite Database on the device.
Sorry about my english …

There isn’t any simple way to do this. The biggest problem is security - the ability of a device to push data to your desktop exposes all kinds of potential issues.

The best solution will depend on how much information you want to send, how often it needs to be sent, what tools are available on the PC, how secure the data has to be during transmission, etc.

A very simple way I’ve seem some users do this is to send the information in an email.

For more sophisticated applications, AJAX is often used.