Hey all!
I am reinventing the wheel and writing a basic authentication system with MYSQL. Currently I am using the php-cli built in server to serve my project locally with $ php --server localhost:8080 -t ../phpFun
.
I have read the official php manual on the built in server & this stackverflow post.
Will I run into threading issues if I am interacting with a SQL database?
Are there any other issues I should expect. I do not think any issues on the manual or the stackoverflow post will apply to me, yet I did not see anything that applies to my use case.
I don't mind apache if it is the path of least resistance. I simply want to keep the focus on the authentication system and not the environment.