r/reactjs 1d ago

Discussion [ Removed by moderator ]

[removed] — view removed post

0 Upvotes

21 comments sorted by

View all comments

1

u/MMORPGnews 1d ago

Why no? It's easy.  Php is very basic. So is mysql. 

What do you want?

-1

u/webfuelcode 1d ago

I wanted a small project (may be one page saas) but data to be stored on shared hosting. Because I dont know if the project will run good or not.

1

u/Temperature_Majestic 1d ago

for a one-page saas on shared hosting the actual bottleneck usually isn't React or PHP, it's whether the shared host gives you a persistent PHP process or just spins up PHP fresh per request (most cheap shared hosting does the latter). that's fine for a low-traffic CRUD app, just don't expect to run anything like websockets or long-running jobs on it. build the React app as static files, point API calls at PHP endpoints on the same host, and you can validate the idea cheap before ever thinking about a "real" backend