<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1030785" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1030785</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/php-xhtml#comment-1179929</link>
    <description> &lt;p&gt;Nope, sessions wont because of the &amp;amp; symbol. If you are validating from a web site (uploaded site), click on 2 or 3 other pages then back to the page you want to validate as this will clear the session, or you can have an option to not start the session, include the session stuff in a seperate file (as it should be before any output) and have something like: $test_mode = &#039;yeah&#039;; /* or nah */ if ($test_mode == &#039;yeah&#039;){ don&#039;t start session }else{ do the session stuff } kinda thing, this way if you forget to switch back it is only a simple value change to a single file.&lt;/p&gt;
 </description>
     <pubDate>Sat, 17 Sep 2005 21:30:10 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1179929 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/php-xhtml#comment-1179901</link>
    <description> &lt;p&gt;Yeah thats exactly right, thats what I figured out later coz I was coding the PHP files as individual pages which functions on their own, then I decided to use all of them inside a single php page, so thats how I figured out that structuring it more so is not really necessary if youve done it on one holder...&lt;/p&gt;
&lt;p&gt;Anyways another thing that doesnt validate are PHP sessions... Oh Well...&lt;/p&gt;
 </description>
     <pubDate>Sat, 17 Sep 2005 11:39:32 +0000</pubDate>
 <dc:creator>demonhale</dc:creator>
 <guid isPermaLink="false">comment 1179901 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/php-xhtml#comment-1179900</link>
    <description> &lt;p&gt;I have several sites where pages are done like so:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;/*page variables */&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$var1 &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;something&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$var2 &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;something else&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt; .....&lt;br /&gt;include &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;header.php&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;include &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;layout_top.php&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;include &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;content.php&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;include &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;layout_lower.php&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;include &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;footer.php&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
No actual content is written in the page and pages like header contains the head section, things like DOC tag, meta tags, title, css includes ... as well as the  tag.&lt;br /&gt;
the footer usually just contains the bottoms links (sometimes) but mostly just  as the includes are added content, not new html files.&lt;br /&gt;
The php pages could be done like so:&lt;/p&gt;
&lt;p&gt;....&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;include &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;stuff.php&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;...&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;this time the includes dont contain any structal html. All depends how much you pull from the database or how much of a template the layout is.&lt;/p&gt;
 </description>
     <pubDate>Sat, 17 Sep 2005 11:35:23 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1179900 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/php-xhtml#comment-1179897</link>
    <description> &lt;p&gt;I figured it out, thanks anyway, I guess all I was asking were opinions on multiple PHP includes, the solution would be on the other PHP files you wish to include inside a another PHP file, you should remove all duplicate html tags that would be displayed. Removing tags like body and html... Treat it like its not an individual page the way an iframe is done...&lt;/p&gt;
 </description>
     <pubDate>Sat, 17 Sep 2005 11:23:45 +0000</pubDate>
 <dc:creator>demonhale</dc:creator>
 <guid isPermaLink="false">comment 1179897 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/php-xhtml#comment-1179894</link>
    <description> &lt;p&gt;Can you give us a url that we can see the validation error on?&lt;/p&gt;
 </description>
     <pubDate>Sat, 17 Sep 2005 11:17:52 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1179894 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/php-xhtml#comment-1179880</link>
    <description> &lt;p&gt;moz 1.5 i think is an example, but then again maybe it was a conflict...&lt;/p&gt;
 </description>
     <pubDate>Sat, 17 Sep 2005 03:37:40 +0000</pubDate>
 <dc:creator>demonhale</dc:creator>
 <guid isPermaLink="false">comment 1179880 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/php-xhtml#comment-1179879</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote:  but then it quirks up on some old versions of FF and other browsers...&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;How old are we talking here?&lt;/p&gt;
&lt;p&gt;I test in seven browsers, and there are no problems with it in any of these:&lt;br /&gt;
Firefox, Mozilla Suite, Netscape 7, Netscape 8, Opera 6, Opera 8, IE6.&lt;/p&gt;
 </description>
     <pubDate>Sat, 17 Sep 2005 03:28:20 +0000</pubDate>
 <dc:creator>Roo</dc:creator>
 <guid isPermaLink="false">comment 1179879 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/php-xhtml#comment-1179878</link>
    <description> &lt;p&gt;Yeah object tag does validate I said, but then it quirks up on some old versions of FF and other browsers...&lt;/p&gt;
&lt;p&gt;Mainly the concern would be if I code different PHP files then use include tags on another PHP file which will contain these different PHP files, then their would be some validation problems, also with the active URL and all... Jus a thought...&lt;/p&gt;
 </description>
     <pubDate>Sat, 17 Sep 2005 03:17:13 +0000</pubDate>
 <dc:creator>demonhale</dc:creator>
 <guid isPermaLink="false">comment 1179878 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/php-xhtml#comment-1179867</link>
    <description> &lt;p&gt;I think I got this from ALA...I&#039;m using it on a site of mine and it validates:&lt;/p&gt;
&lt;p&gt;Replace ??? with your movie dimentions and nameofmovie with your file name.&lt;/p&gt;
 </description>
     <pubDate>Fri, 16 Sep 2005 22:45:59 +0000</pubDate>
 <dc:creator>Roo</dc:creator>
 <guid isPermaLink="false">comment 1179867 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/php-xhtml#comment-1179793</link>
    <description> &lt;p&gt;Good points Busy. Also if you want a method for validation-friendly Flash embedding look up the ALA Article: &lt;a href=&quot;http://www.alistapart.com/articles/flashsatay&quot; class=&quot;bb-url&quot;&gt;http://www.alistapart.com/articles/flashsatay&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I&#039;ve used this in the past and it works a treat. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 16 Sep 2005 12:12:03 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1179793 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
