<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Design company - Goweb99 blog &#187; PHP in HTML</title>
	<atom:link href="http://www.goweb99.com/blog/tag/php-in-html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.goweb99.com/blog</link>
	<description>Get your website designed for as low as $99.</description>
	<lastBuildDate>Fri, 30 Jul 2010 20:27:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Embedding PHP in HTML</title>
		<link>http://www.goweb99.com/blog/php-tutorial/embedding-php-in-html/</link>
		<comments>http://www.goweb99.com/blog/php-tutorial/embedding-php-in-html/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 07:54:58 +0000</pubDate>
		<dc:creator>tutor</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[PHP in HTML]]></category>
		<category><![CDATA[PHP Tuts]]></category>

		<guid isPermaLink="false">http://www.goweb99.com/blog/?p=355</guid>
		<description><![CDATA[PHP is almost always used with HTML. PHP scripts are embedded inside HTML pages anywhere in the body section.
A simple HTML page with PHP scripts looks like this:
&#60;html&#62;
&#60;head&#62;
&#60;title&#62; Embedding PHP in HTML&#60;/title&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;?php
echo ”It&#8217;s so good to be here!!!”;
?&#62;
&#60;/body&#62;
&#60;/html&#62;
Output:
It&#8217;s so good to be here!!!
Echo is a PHP command to output string on the web page.
Echo is [...]]]></description>
			<content:encoded><![CDATA[<p>PHP is almost always used with HTML. PHP scripts are embedded inside HTML pages anywhere in the body section.</p>
<p>A simple HTML page with PHP scripts looks like this:</p>
<div class="example">&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt; Embedding PHP in HTML&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;?php<br />
echo ”It&#8217;s so good to be here!!!”;<br />
?&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</div>
<div class="example">Output:</p>
<p>It&#8217;s so good to be here!!!</p></div>
<p>Echo is a PHP command to output string on the web page.<br />
Echo is a vast topic so we will be discussing it later in this tutorial.</p>
<p><strong>The Semicolon</strong></p>
<p>Each line of PHP code ends with a semicolon. Semicolon is the PHP delimiter.</p>
<p>PHP will show an error if the semicolon is missed in any line.</p>
<p>echo ”It&#8217;s so good to be here!!!”;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goweb99.com/blog/php-tutorial/embedding-php-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
