PHP and CSS (and XHTML)

A

Anonymous

Guest
Hi!
All you problem it's PHP configuretions.... try set in php.ini next: short_open_tag = Off
 
In this part of youre code:
Code:
<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE html 
     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 
  <head> 
    <link type="text/css" rel="stylesheet" href="style.css"> 
    <title> 
      The Cool Titlel 
    </title> 
    <meta http-equiv="Refresh" 
    content="1; URL=index.php3"> 
  </head> 
  <body>
you not have a error, - all work.
Asi said before: you need change PHP.ini
Cause PHP try process this <? like php code but it's not php code :!:
It's simple redirect at index.php3
 
Back
Top