Fire up the Lambos and meet usePHP. Run PHP in React, with edge SSR. Extracts your PHP code, executes it in WASM, and injects the result into your React code.
ALT const php = await usePHP(request, h);
<div>
{await php`
<?php
echo "Hello world";
phpinfo();
?>
`}
</div>