- #36
PeterDonis
Mentor
- 47,585
- 23,854
The "SQLite" you download is a standalone program that runs on your local machine. It has no "comms" with anything.DaveC426913 said:The part where I download and install SQLite in my development environment.
Yes, an sqlite database file on your local machine. You would then have to upload it to your client's web host and tell the web host's server software (PHP with its SQLite support, I assume) where to find it. Then the web host's server software would be running code to access that file. The "SQLite" program on your local machine would be out of the picture entirely.DaveC426913 said:it gives me a prompt to create and edit tables, which - I assume - end up in a stand-alone file or files
Not really. At any rate, it seems to me that you have enough information from this thread to try the one I described locally. I have used this method many times. It really helps me to understand what all the pieces are doing and how they have to fit together.DaveC426913 said:But there are innumerable possible solutions.