When I visit my website I only see the logo image displaying but all the other images aren’t even loading, with the same referencing as the logo. The css styling also doesn’t display what should I do?
When I click View Source on your website, I see a lot of red.
The main issue appears to be this line at the top of the file:
<php session_start(); ?>
The question mark in the PHP opening tag is missing (it should be <?php instead of <php). As far as I can tell, this extra tag outside the HTML document is thoroughly confusing the HTML parser of my browser, making a big mess of the content.
I suggest changing this first and see if it helps.
Additionally, when I check the Console in my browser, it tells me the page responded with a 500 Internal Server Error. This usually means the PHP code crashed. That can also result in an incomplete page being generated.