DEV Community

kratosman
kratosman

Posted on

how to connect reactjs to mysql php?

I want to use php as my backend.
in the project I'm doing with reactjs

Top comments (2)

Collapse
 
ncpa0cpl profile image
ncpa0cpl

Usually you would implement an REST API on the backend and access it via Ajax http request from the frontend. Alternatively you could use GraphQL

Collapse
 
kratosman profile image
kratosman

thank you man