well i am .css validated. php code on the other hand i can't stop getting errors. I fix and error and it tells me to do one thing. so i do that and go validate again and tells me its still wrong. So the hell with that.....
Good for you and congrats on the CSS validation (I only checked the home page)!
As for your 'php code' not validating, it is actually your (x)html document (the php parser on the server that has executed your php scripts within your page and put the end results as html) is what is the problem.
Simply have a look at what the validator is saying... I had a glance at your xhtml code on your homepage... and I can immediately see many serious issues..
You have divs in your <head> tags (don't do that), and you have multiple <head> tags as well as Doctype declarations! (again, don't do that). You should have only one <head> tag and one Doctype declaration.
If you are using an IDE such as Dreamweaver, you can start off of a template. Here is a sample 'blank page':
<!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">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
</body>
</html>
Note how the structure is laid out.. there is no double DTD doctype or <head> tag declarations.
Also note that in xhtml, tags like <img> are self closing.. so when I look at an example of an imag tag you have (in your header.. again.. don't do that):
<img src="images/header.jpg" alt="">Should be located within your <body> tag (along with your divs) and in this case, your image tag should be:
<img src="images/header.jpg" alt="" />(note the closing / before the > character.. in fact, if you look carefully, even the meta tags follow this notion)
I know when starting out, webdev is rough.. but you're getting there..Do a google search on proper semantic xhtml structure. Read up on what is acceptable and what is not within say <head> tags by example.. Read up on how xhtml tags should be structured. You fix those problems, your site will really start falling into place. (FYI, I see 133 errors in the validator...Understand that in reality, you may have less than half that.. once an error occurs, this creates a chain reaction of sorts).. so don't get discouraged by that number.. it is really far less.
Hang in there if you truly want to learn web coding.. the beginning is the hardest.. it gets easier from here.
Cheers