<?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: PHP Lesson 1 &#8211; First PHP Script</title>
	<atom:link href="http://newsourcemedia.com/blog/php-lesson-1-first-php-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://newsourcemedia.com/blog/php-lesson-1-first-php-script/</link>
	<description>Focused on Interactive Design, Development and Marketing</description>
	<lastBuildDate>Wed, 23 May 2012 11:06:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: SAURABH CHOUDHARY</title>
		<link>http://newsourcemedia.com/blog/php-lesson-1-first-php-script/comment-page-1/#comment-121</link>
		<dc:creator>SAURABH CHOUDHARY</dc:creator>
		<pubDate>Tue, 05 Feb 2008 20:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2005/05/01/php-lesson-1-first-php-script/#comment-121</guid>
		<description>How to upload PHP file on the server.</description>
		<content:encoded><![CDATA[<p>How to upload PHP file on the server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ojo Jacob</title>
		<link>http://newsourcemedia.com/blog/php-lesson-1-first-php-script/comment-page-1/#comment-120</link>
		<dc:creator>Ojo Jacob</dc:creator>
		<pubDate>Tue, 29 Jan 2008 20:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2005/05/01/php-lesson-1-first-php-script/#comment-120</guid>
		<description>please, how do i up load my codes. (the tutorial was cool and simple to understand). Please keep up the good work.</description>
		<content:encoded><![CDATA[<p>please, how do i up load my codes. (the tutorial was cool and simple to understand). Please keep up the good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://newsourcemedia.com/blog/php-lesson-1-first-php-script/comment-page-1/#comment-59</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Thu, 24 Jun 2004 20:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2005/05/01/php-lesson-1-first-php-script/#comment-59</guid>
		<description>Do this:
// setup your
function yourfuncname(){
$variable = &quot;value&quot;;
return $variable;
}
//Now grab the value of the function
$new_ver =  yourfuncname();
echo $new_ver; // returns  &quot;value&quot;</description>
		<content:encoded><![CDATA[<p>Do this:<br />
// setup your<br />
function yourfuncname(){<br />
$variable = &#8220;value&#8221;;<br />
return $variable;<br />
}<br />
//Now grab the value of the function<br />
$new_ver =  yourfuncname();<br />
echo $new_ver; // returns  &#8220;value&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://newsourcemedia.com/blog/php-lesson-1-first-php-script/comment-page-1/#comment-58</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 23 Jun 2004 20:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2005/05/01/php-lesson-1-first-php-script/#comment-58</guid>
		<description>Firstly I want to thank you for the online lessons. I need to learn PHP in a hurry for a project that is about to kick off. I have very basic HTML skills and need to learn another language that can utilise databases and PHP is the best for this due to the open source software that it can utilise. The problem that I am experiancing is this when I use the return function on the structure age the text does not appear. However if I use the echo function it does. I am using Apache 2 webserver and PHP 5. Could it possibly be a configuration problem?</description>
		<content:encoded><![CDATA[<p>Firstly I want to thank you for the online lessons. I need to learn PHP in a hurry for a project that is about to kick off. I have very basic HTML skills and need to learn another language that can utilise databases and PHP is the best for this due to the open source software that it can utilise. The problem that I am experiancing is this when I use the return function on the structure age the text does not appear. However if I use the echo function it does. I am using Apache 2 webserver and PHP 5. Could it possibly be a configuration problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://newsourcemedia.com/blog/php-lesson-1-first-php-script/comment-page-1/#comment-52</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Tue, 11 May 2004 20:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2005/05/01/php-lesson-1-first-php-script/#comment-52</guid>
		<description>Try working backwards. For example, try adding the HTML code to the first PHP file that worked instead of add the PHP to the HTML. </description>
		<content:encoded><![CDATA[<p>Try working backwards. For example, try adding the HTML code to the first PHP file that worked instead of add the PHP to the HTML.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ellen</title>
		<link>http://newsourcemedia.com/blog/php-lesson-1-first-php-script/comment-page-1/#comment-51</link>
		<dc:creator>Ellen</dc:creator>
		<pubDate>Mon, 10 May 2004 20:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2005/05/01/php-lesson-1-first-php-script/#comment-51</guid>
		<description>I can get a simple PHP file with only &lt;? return &quot;Hello World!&quot;; ?&gt; to work, but when I put that code into an existing HTML page (and rename the page so that it&#039;s a PHP page), nothing shows. Same server. Why?
</description>
		<content:encoded><![CDATA[<p>I can get a simple PHP file with only < ? return "Hello World!"; ?> to work, but when I put that code into an existing HTML page (and rename the page so that it&#8217;s a PHP page), nothing shows. Same server. Why?</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! -->
