I’m wanting to deploy my website admin page and run it on someone’s location machine as a local page localhost
is there a way to do this? WampServer, Xamp etc but have my content installed ready to go.
will also be needed for mac and windows
I’m wanting to deploy my website admin page and run it on someone’s location machine as a local page localhost
is there a way to do this? WampServer, Xamp etc but have my content installed ready to go.
will also be needed for mac and windows
nzkiwi80 deploy my website admin page and run it on someone’s location machine as a local page localhost
It's not at all clear from your post what you are trying to do, but PHP runs on the server. If someone has PHP installed on their "localhost" -- their laptop or workstation -- then you can perhaps run a PHP script there.
Huh. Running PHP on the client.
I've got a couple of apps here that are distributed as .zip files that include a full Python runtime to support the client-side code, and a batch file that launches uvicorn to act as a local web server (all of which is done precisely because there isn't a remote server). I guess something similar could be done to bundle a PHP runtime and a batch script to launch its internal http server. Maybe the script could then launch the user's browser and automatically direct it to the appropriate port on the local host.
But I'm not clear on what this client-side app will actually be doing, so the whole thing may be an XY-problem.