[Solved] How to use PHP in a html5 setting [closed]
This is missing an ending div tag. And the first div is missing an equal sign. <article> <div class”content_container”> <div class=”content_loading_container”></div> </article> It needs to be this… <article> <div class=”content_container”> <div class=”content_loading_container”></div> </div> </article> That’s the only remaining syntax error that I can see. Now you say ur adding these php pages and when you … Read more