Css issues with php files

as soon as I put in the
<?php
session_cache_limiter(‘none’);
session_start();
ob_start();
include “vsadmin/db_conn_open.php”;
include “vsadmin/inc/metainfo.php”;?>

above the <Head> My site design gets shifted to the left on the php files only, and I have only seen it in ie9.

321actionvideo .com/videogalleries.php

Hi mjcloward. Welcome to the forums. :slight_smile:

For one thing, your pages need a doctype. Even this will do:

<!DOCTYPE html>

Always include a doctype at the top of your HTML.

I’m not sure if there’s anything wrong with your PHP—but that’s not an issue for this forum. I would suggest that you put a space between the closing ?> and what comes before it, but I don’t know if that’s an error or not.

that worked, thanks