Will PHP work with pages?

I was planning on adding a website to Cloudflare pages and had intended on using PHP to add +and edit the same header and footer content across all my static pages, for example something like:

<?php include("header.php"); ?>

<div id="page-content">

</div>

<?php include("footer.php"); ?>

I had planned to do this with either drag and drop in the dashboard or via Github but someone just mentioned to me that this PHP method won't work with Cloudflare pages.

Is that correct?
Was this page helpful?