<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: What is the difference between PHP and XHTML code?</title>
	<atom:link href="http://www.codebrothers.org/what-is-the-difference-between-php-and-xhtml-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codebrothers.org/what-is-the-difference-between-php-and-xhtml-code/</link>
	<description></description>
	<lastBuildDate>Mon, 02 Jan 2012 00:02:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: steve</title>
		<link>http://www.codebrothers.org/what-is-the-difference-between-php-and-xhtml-code/comment-page-1/#comment-1898</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Fri, 26 Feb 2010 22:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.codebrothers.org/what-is-the-difference-between-php-and-xhtml-code/#comment-1898</guid>
		<description>Im going to try to explain this best I can, sorry ahead of time if im not clear enough.

xhtml is used to create invisible (or visible) boxes that you can (or cannot) physically see. You then use CSS (a style sheet) to edit those boxes to be the size, color, and position that you want. These two are used to make the part of the website that you see. (those xhtml boxes are &lt;div&gt;&#039;s ... xhtml can be used for more but this is just a general overview)

PHP is a server-side language that the client (whoever is visiting your site) will never see. It gets executed on the server before its sent to him.

You use php to make web pages dynamic, like your login stuff and this yahoo answers stuff we&#039;re typing in. We type it in, it sends the information to the server where the server-side language (php) in your case plays with it and saves it in databases (php is normally used with mysql). PHP is for all the behind the scenes stuff while xhtml and css are used to make the look and feel of the page.

Hope this helps

http://www.w3schools.com/css/default.asp       learn css
http://www.w3schools.com/xhtml/default.asp   learn xhtml
http://www.w3schools.com/php/default.asp     learn php</description>
		<content:encoded><![CDATA[<p>Im going to try to explain this best I can, sorry ahead of time if im not clear enough.</p>
<p>xhtml is used to create invisible (or visible) boxes that you can (or cannot) physically see. You then use CSS (a style sheet) to edit those boxes to be the size, color, and position that you want. These two are used to make the part of the website that you see. (those xhtml boxes are &lt;div&gt;&#8217;s &#8230; xhtml can be used for more but this is just a general overview)</p>
<p>PHP is a server-side language that the client (whoever is visiting your site) will never see. It gets executed on the server before its sent to him.</p>
<p>You use php to make web pages dynamic, like your login stuff and this yahoo answers stuff we&#8217;re typing in. We type it in, it sends the information to the server where the server-side language (php) in your case plays with it and saves it in databases (php is normally used with mysql). PHP is for all the behind the scenes stuff while xhtml and css are used to make the look and feel of the page.</p>
<p>Hope this helps</p>
<p>http://www.w3schools.com/css/default.asp       learn css<br />
http://www.w3schools.com/xhtml/default.asp   learn xhtml<br />
http://www.w3schools.com/php/default.asp     learn php</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J.J.'s Advice / Avis de J.J.</title>
		<link>http://www.codebrothers.org/what-is-the-difference-between-php-and-xhtml-code/comment-page-1/#comment-1899</link>
		<dc:creator>J.J.'s Advice / Avis de J.J.</dc:creator>
		<pubDate>Fri, 26 Feb 2010 22:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.codebrothers.org/what-is-the-difference-between-php-and-xhtml-code/#comment-1899</guid>
		<description>It&#039;s hard to compare XHTML to PHP. One compliments the other. XHTML is a static information-based markup language executed on the client side. PHP is a dynamic backend scripting language executed by the server.
That means that your browser never reads PHP. The PHP is pre-processed by the server and converted into XHTML. PHP stands for PHP Hypertext Preprocessing Language. The initial P in PHP standing for PHP is a little joke about the recursive nature of the language.

If you want to have a login with user accounts you&#039;ll need PHP to process login forms and cookies, and MySQL, a type of database, to store the user information in. You&#039;ll still need XHTML to actually design the form.

PHP doens&#039;t actually show anything. It can output strings, but that&#039;s the extent of it. It just outputs plain text. You can then use that plain text inside of XHTML tags to achieve the effect you desire.</description>
		<content:encoded><![CDATA[<p>It&#8217;s hard to compare XHTML to PHP. One compliments the other. XHTML is a static information-based markup language executed on the client side. PHP is a dynamic backend scripting language executed by the server.<br />
That means that your browser never reads PHP. The PHP is pre-processed by the server and converted into XHTML. PHP stands for PHP Hypertext Preprocessing Language. The initial P in PHP standing for PHP is a little joke about the recursive nature of the language.</p>
<p>If you want to have a login with user accounts you&#8217;ll need PHP to process login forms and cookies, and MySQL, a type of database, to store the user information in. You&#8217;ll still need XHTML to actually design the form.</p>
<p>PHP doens&#8217;t actually show anything. It can output strings, but that&#8217;s the extent of it. It just outputs plain text. You can then use that plain text inside of XHTML tags to achieve the effect you desire.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dhanesh</title>
		<link>http://www.codebrothers.org/what-is-the-difference-between-php-and-xhtml-code/comment-page-1/#comment-1900</link>
		<dc:creator>dhanesh</dc:creator>
		<pubDate>Fri, 26 Feb 2010 22:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.codebrothers.org/what-is-the-difference-between-php-and-xhtml-code/#comment-1900</guid>
		<description>Hey dude, 

PHP is a server side scripting language which is used to generate dynamic XHTML and sent to browser.

XHTML is just a mark up language which browser can understand and use to design the user interface.</description>
		<content:encoded><![CDATA[<p>Hey dude, </p>
<p>PHP is a server side scripting language which is used to generate dynamic XHTML and sent to browser.</p>
<p>XHTML is just a mark up language which browser can understand and use to design the user interface.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
