← Back to the notebook

JSX Site Builders, Page Builders, and Raw PHP: What’s Actually Different

Three ways to build the same website—and what each one quietly asks of you after launch.

Laptop displaying website code beside a desktop monitor in a development workspace

Every few months someone asks me which one is better. It is a fair question with an unsatisfying answer: they are three different tools that happen to produce the same thing on the screen. A visitor cannot tell them apart. Your browser cannot really tell them apart either. The difference shows up somewhere less visible—in what it costs to change something six months from now.

So here is the plain version of what each one is actually doing.

What a JSX Builder Is Doing

JSX is the syntax React uses to describe a page. Modern site builders in that world—React, Next.js, Astro, Gatsby, and the visual tools built on top of them—let you write the page once as a set of components, then assemble those components into screens. A button is written a single time and used two hundred places. Change it once, it changes everywhere.

That approach earns its keep when a site behaves like software. Dashboards, booking flows, filtered product catalogs, anything where the page reacts to what the user is doing without reloading. The component model is genuinely good at that, and the developer experience is the reason so many people build this way now.

The tradeoff is that the thing you write is not the thing that ships. There is a build step in between. Your site is compiled, bundled, and deployed by a pipeline, and that pipeline has its own dependencies, its own versions, and its own opinions. When it works, you barely notice it. When you have not touched the project in a year and a dependency has moved on without you, you notice it a lot.

What a Page Builder Like Elementor Is Doing

Elementor, Divi, Beaver Builder, Bricks, Webflow, Squarespace—different products, same core promise. You arrange the page visually and the tool writes the underlying code for you. No build step you have to think about, no terminal, and you can see the result while you are making it.

That is a real advantage and I do not think people give it enough credit. A business owner who can fix their own hours, swap their own photos, and publish their own landing page on a Tuesday afternoon is a business owner who is not waiting on anyone. Speed of change is worth something. For a lot of small sites it is worth more than technical elegance.

What you take on in exchange is weight and dependency. The builder ships its own framework on top of the platform’s framework, and that stack has to load before your page can render. It is usually manageable, and the good builders have gotten meaningfully leaner. But the layout you built lives inside that tool’s format. Leave the tool and the layout does not come with you cleanly.

What Raw PHP Is Doing

Raw PHP is the oldest approach on this list and the most direct. The server runs your file, your file produces HTML, the browser gets HTML. There is no compile step, no bundle, no client-side framework waking up before your headline appears. The file you edit is the file that runs.

The practical effect is fewer moving parts. Fewer parts to update, fewer parts to break on their own schedule, fewer parts standing between a change and it being live. It also runs on essentially any host, which quietly matters more than it sounds like it should.

The honest cost is that PHP hands you very little for free. There is no component system unless you build one, no visual editor, no ecosystem of drag-and-drop blocks. Repetition is something you have to manage yourself with includes and templates. If your site needs a genuinely interactive interface, you will end up writing that part in JavaScript anyway. Raw PHP does not save you from complexity that is actually there—it just refuses to add complexity that is not.

The Difference Shows Up After Launch

All three can produce a fast, good-looking, well-ranked website. I have seen excellent sites built every one of these ways, and rough ones too. On launch day the differences are close to invisible.

Where they separate is maintenance. A JSX build asks you to keep a toolchain healthy. A page builder asks you to stay inside its ecosystem and keep its plugins current. Raw PHP asks almost nothing on a schedule, but asks more of you every time you want to build something new. That maintenance tradeoff is also why how often a website needs attention depends partly on what it is built with.

Pick the one whose ongoing ask you can actually meet. Someone who edits their own site weekly and does not want a terminal should be on a page builder. A product with real application behavior belongs in a component framework. A brochure site with a contact form, six pages, and an owner who wants to stop thinking about it is a good candidate for plain PHP. That last case is also the one I get asked about most often—taking a React or JSX front end that has outgrown its build pipeline and converting it to straight PHP that runs anywhere. Same design, same content, fewer dependencies. It is a website development service I offer, and it is the right move more often than people expect, but it is not automatically the right move for everyone.

There is no winner here. There is only which set of tradeoffs matches how you actually work.

Ready for an outside perspective?

Start with a straightforward review of what you have and what is actually getting in the way.

Start Here
Questions

Frequently Asked Questions

Is one of these faster than the others?

Any of them can be fast, and any of them can be slow. Raw PHP starts with the fewest layers, so it has the shortest path to a fast page. But a well-built React site with good caching beats a neglected PHP site easily. Execution matters more than the category.

Is Elementor bad for SEO?

No. It adds weight, and weight can affect page experience if you ignore it. Plenty of Elementor sites rank well because their owners optimize images, limit plugins, and write content worth ranking. The builder is not the deciding factor.

Do I need React for a small business website?

Usually not. If your site is pages, photos, and a contact form, the component model is solving a problem you do not have. If your site is a tool people log into and use, that is a different conversation.

Can I move off a page builder later?

Yes, but expect a rebuild rather than an export. The content moves easily; the layout generally does not, because it is stored in the builder’s own format. Plan for that when you choose one, not when you leave.

Why would someone convert a JSX site to PHP?

Usually because the build pipeline has become the maintenance burden. Dependencies drift, a deploy breaks, and nobody on the team wants to own it. If the site is mostly static pages anyway, converting to PHP removes the pipeline without changing what visitors see.

Which one is cheapest?

Over one year, a page builder usually wins. Over five, it depends entirely on whether you keep paying for plugin licenses and whether the site gets rebuilt. Build cost and ownership cost are separate numbers and people tend to only look at the first one.