<?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>Tiposaurus &#187; PHP</title>
	<atom:link href="http://tiposaurus.co.uk/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://tiposaurus.co.uk</link>
	<description>Rawrr.</description>
	<lastBuildDate>Sun, 05 Feb 2012 23:32:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Generating Random Numbers in PHP</title>
		<link>http://tiposaurus.co.uk/2011/06/random-numbers-in-php/</link>
		<comments>http://tiposaurus.co.uk/2011/06/random-numbers-in-php/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 09:56:59 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/04/27/random-numbers-in-php/</guid>
		<description><![CDATA[To create random numbers in PHP, you can use the rand() function call, which takes either zero or, optionally, two parameters determining the minimum and maximum random numbers (inclusive) that you'd like. If you don't specify a maximum then it will default to a value, RAND_MAX, set in the PHP configuration. The function returns an [...]]]></description>
			<content:encoded><![CDATA[<p>To create random numbers in PHP, you can use the <em>rand()</em> function call, which takes either zero or, optionally, two parameters determining the minimum and maximum random numbers (inclusive) that you'd like. If you don't specify a maximum then it will default to a value, <em>RAND_MAX</em>, set in the PHP configuration. The function returns an integer, generated "randomly." (Computers can't generate real random numbers, but this tries and is suitable for most purposes.)</p>
<p>You can get the value of RAND_MAX with the function getrandmax(). Then if you desire a random number larger than that, you have to specify the min and max bounds as parameters, eg <em>rand(0, 100000)</em> will return a random number between 0 and 100000 inclusive - so both 0 and 100000 can be returned.</p>
<p>For example:</p>
<pre>&lt;!--?php // random number between 0 and RAND_MAX:
echo rand(); // output: 28688 (for example)
// random number between 37 and 50:
echo rand(37, 50); // output: 44
// find out the value of RAND_MAX:
echo getrandmax(); // output: 32767
// get a larger random number by specifying min and max:
echo rand(0, 1000000); // output: 351990
?&gt;</pre>
<p>The output shown in the comments above is as an example. Since it is generating random numbers, the numbers generated are very likely to be be different every time.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiposaurus.co.uk/2011/06/random-numbers-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To: Read a file&#039;s contents with PHP</title>
		<link>http://tiposaurus.co.uk/2011/04/reading-a-files-contents-with-php/</link>
		<comments>http://tiposaurus.co.uk/2011/04/reading-a-files-contents-with-php/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 09:04:06 +0000</pubDate>
		<dc:creator>Tiposaurus</dc:creator>
				<category><![CDATA[Files]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/04/28/reading-a-files-contents-with-php/</guid>
		<description><![CDATA[PHP provides three built-in functions which allow you to easily read the contents of a file on your webserver. This is useful when, for example, another program may write information to the file and you could access that information through your script. In this example, we're going to use the following example 5 line file, [...]]]></description>
			<content:encoded><![CDATA[<p>PHP provides three built-in functions which allow you to easily read the contents of a file on your webserver. This is useful when, for example, another program may write information to the file and you could access that information through your script.</p>
<p>In this example, we're going to use the following example 5 line file, saved as file.txt:</p>
<pre>line 1
line 2
line 3
line 4
line 5</pre>
<p>In the same directory as file.txt, we're going to work with the PHP file test.php. We'll outline the file reading functions below.</p>
<h3>readfile()</h3>
<p>readfile() is the least useful of the file functions. As a parameter, it takes a string which specifies the location of the file to read - this can be relative or absolute; since our file is the same directory as the script, we just need to pass the string 'file.txt' as this paramter. We call the function using the code <code>readfile('file.txt')</code> and it prints out the contents of the file straight to the browser:</p>
<pre>
// readfile() writes the contents of the file straight to the browser
echo 'Contents of file.txt using readfile():&lt;br&gt;';
readfile('file.txt');
</pre>
<p>The disadvantage of readfile() is that it doesn't allow you to manipulate the file contents before displaying it - the next two functions we're going to look at will allow you to do that.</p>
<h3>file()</h3>
<p>The code <code>file('file.txt')</code> will read the contents of file.txt into an array, which you can then manipulate in your scripts and display yourself. Each line of the file is stored in a seperate element of the array, this means that we can access and manipulate each line of the file seperately using normal array notation.</p>
<pre>
// file() loads the contents of file.txt into an array, $lines
// each line in the file becomes a seperate element of the array.
$lines = file('file.txt');

// now loop through the array to print the contents of the file
echo 'Contents of file.txt using file():&lt;br&gt;';
foreach ($lines as $line)
{
echo htmlspecialchars($line) . '&lt;br&gt;';
}

// we can also access each line of the file seperately
echo '3rd line of the file: "' . htmlspecialchars($lines[2]) . '"&lt;br&gt;';
</pre>
<p>In this example, we've loaded the contents of file.txt into an array called <code>$lines</code> then used foreach to loop through the array and display each line on the user's browser. We then use <code>$lines[2]</code> to access the third line of the file (the element at array index 2, since line 1 is <code>$lines[0]</code>).</p>
<p>You may notice that we've used a function called htmlspecialchars() when displaying the file's contents - this enables that special characters used in HTML, such as &gt; and " are displayed correctly. This illustrates the power of file() over readfile() since readfile() was unable to perform this kind of processing.</p>
<h3>get_file_contents()</h3>
<p>The last method we will look at is get_file_contents('file.txt') which is similar to file() however rather than returning an array, it returns a string with all the lines of the file. We can manipulate and display this in a similar way as with file():</p>
<pre>
// file_get_contents() reads the file and places the contents in a string
$fileString = file_get_contents('file.txt');
echo 'Contents of file.txt using file_get_contents():&lt;br&gt;';
echo nl2br( htmlspecialchars($fileString) );
</pre>
<p>Since we have no way of seperating the lines with this method, we've used the nl2br() function which converts line breaks in the string (represented by the special character <code>n</code>) into the HTML line break &lt;br /&gt; so that the file will display correctly on the visitor's browser.</p>
<p>The full contents of test.php is below:</p>
<pre>
&lt;!--?php&lt;br /--&gt; // file() loads the contents of file.txt into an array, $lines
// each line in the file becomes a seperate element of the array.
$lines = file(&#039;file.txt&#039;);

// now loop through the array to print the contents of the file
echo &#039;Contents of file.txt using file():
&#039;;
foreach ($lines as $line)
{
echo htmlspecialchars($line) . &#039;&amp;lt;br&amp;gt;&#039;;
}

// we can also access each line of the file seperately
echo &#039;3rd line of the file: &quot;&#039; . htmlspecialchars($lines[2]) . &#039;&quot;&amp;lt;br&amp;gt;&#039;;
echo &#039;&amp;lt;br&amp;gt;&#039;;

// file_get_contents() reads the file and places the contents in a string
$fileString = file_get_contents(&#039;file.txt&#039;);
echo &#039;Contents of file.txt using file_get_contents():
&#039;;
echo nl2br( htmlspecialchars($fileString) );
echo &#039;&amp;lt;br&amp;gt;&#039;;

// readfile() writes the contents of the file straight to the browser
echo &#039;Contents of file.txt using readfile():&amp;lt;br&amp;gt;&#039;;
readfile(&#039;file.txt&#039;);
?&amp;gt;
</pre>
<p>The output from test.php is:</p>
<pre>Contents of file.txt using file():
line 1
line 2
line 3
line 4
line 5
3rd line of the file: "line 3 "

Contents of file.txt using file_get_contents():
line 1
line 2
line 3
line 4
line 5

Contents of file.txt using readfile():
line 1 line 2 line 3 line 4 line 5</pre>
]]></content:encoded>
			<wfw:commentRss>http://tiposaurus.co.uk/2011/04/reading-a-files-contents-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Find Items in PHP Arrays</title>
		<link>http://tiposaurus.co.uk/2011/04/finding-items-in-an-array-with-php/</link>
		<comments>http://tiposaurus.co.uk/2011/04/finding-items-in-an-array-with-php/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 23:17:57 +0000</pubDate>
		<dc:creator>Tiposaurus</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/04/28/finding-items-in-an-array-with-php/</guid>
		<description><![CDATA[The problem: we have an array of items in PHP and we want to find out if a specific item is in the array. In code we can define the array as: IE we have an array called $fruitBasket which contains 5 strings, each of which is the name of a fruit. We want to [...]]]></description>
			<content:encoded><![CDATA[<p>The problem: we have an array of items in PHP and we want to find out if a specific item is in the array. In code we can define the array as:</p>
<p><code><!--? // create an array of strings called $fruitBasket: $fruitBasket = array( "Apple", "Orange", "Mango", "Lemon", "Pear" ); ?--></code></p>
<p>IE we have an array called $fruitBasket which contains 5 strings, each of which is the name of a fruit. We want to find out if there is an Apple in the $fruitBasket - is there an element "Apple" in the array?</p>
<p>We do this with the following code:</p>
<pre>&lt;?
// create an array of strings called $fruitBasket:</pre>
<pre>$fruitBasket = array( "Apple", "Orange", "Mango", "Lemon", "Pear" );
// use the in_array() function to check if "Apple" is in the array:
if( in_array("Apple", $fruitBasket) )
{
  echo "Apple is in the array";
}
else
{
  echo "Apple is not in the array";
}
?&gt;</pre>
<p>This code uses the <em>in_array()</em> method to check if the element "Apple" exists in the array $fruitBasket:<br />
<code>in_array("Apple", $fruitBasket)</code></p>
<p>in_array() takes two parameters here: firstly the object we're looking for, in this case "Apple", and secondly the array which we're looking in, $fruitBasket. It then returns a boolean value: true if "Apple" is in the array, or false if it isn't.</p>
<p>References: <a href="http://www.php.net/manual/en/function.in-array.php" _mce_href="http://www.php.net/manual/en/function.in-array.php">php.net manual: in_array() function</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tiposaurus.co.uk/2011/04/finding-items-in-an-array-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the difference between require() and include() in PHP?</title>
		<link>http://tiposaurus.co.uk/2011/04/the-difference-between-require-and-include/</link>
		<comments>http://tiposaurus.co.uk/2011/04/the-difference-between-require-and-include/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 17:26:18 +0000</pubDate>
		<dc:creator>Tiposaurus</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/04/28/the-difference-between-require-and-include/</guid>
		<description><![CDATA[The key difference between require() and include() is that if you require() a file that can't be loaded (eg if it isn't there) then it generates a fatal error which will halt the execution of the page completely, and no more output will be generated. On the other hand, if you include() a file that [...]]]></description>
			<content:encoded><![CDATA[<p>The key difference between require() and include() is that if you require() a file that can't be loaded (eg if it isn't there) then it generates a fatal error which will halt the execution of the page completely, and no more output will be generated. On the other hand, if you include() a file that can't be loaded, then this will merely generate a warning and continue building the page.</p>
<p>What one you should use depends on the situation; require() is best suited for loading files that are essential to the rest of the page - for example if you have a database driven website then using require() to include a file containing the database login and password is clearly preferred over using include(). If you used include() in this situation, then you may end up generating more warnings and errors than you had intended.</p>
<p>include() should be used when it isn't essential for that file to be loaded to execute the page. This is best used in situations where the file isn't essential to the processing of the page (for example a footer file), so if the file isn't present then the user can still view the site. You should, of course, make sure that all files you include() and require() are going to be available.</p>
<p>In PHP versions prior to 4.0.2. there was slightly different behaviour of require(). If you used a require() statement in an if block then the require() statement will always make sure that the file you're require()ing is readable, regardless of whether the condition was true for that if block to be processed. This is best illustrated with the following code example:<span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-size: 12px; line-height: 18px; white-space: pre;"> </span></p>
<pre>&lt;?
$a = 1;</pre>
<pre>  if($a == 2) {
    require("header.php");
  }
?&gt;</pre>
<p>In this example, PHP versions before 4.0.2. will always make sure that header.php is available, but it will only actually execute the contents of it if $a is equal to 2.</p>
<p>From php.net:</p>
<blockquote><p>Note: Prior to PHP 4.0.2, the following applies: require() will always attempt to read the target file, even if the line it's on never executes. The conditional statement won't affect require(). However, if the line on which the require() occurs is not executed, neither will any of the code in the target file be executed. Similarly, looping structures do not affect the behaviour of require(). Although the code contained in the target file is still subject to the loop, the require() itself happens only once.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://tiposaurus.co.uk/2011/04/the-difference-between-require-and-include/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to use PHP in pages with a .html extension (or any other)</title>
		<link>http://tiposaurus.co.uk/2011/04/how-to-use-php-in-pages-with-a-html-extension-or-any-other/</link>
		<comments>http://tiposaurus.co.uk/2011/04/how-to-use-php-in-pages-with-a-html-extension-or-any-other/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 09:31:40 +0000</pubDate>
		<dc:creator>Tiposaurus</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://discomoose.org/2006/04/28/how-to-use-php-in-pages-with-a-html-extension-or-any-other/</guid>
		<description><![CDATA[To be able to use php code on a page with an extension other than .php, you need a server which supports .htaccess files. To add an extension to be parsed for php, create or edit a file called .htaccess (with the dot first) containing the following line: AddType application/x-httpd-php .html .moo .htm This tells [...]]]></description>
			<content:encoded><![CDATA[<p>To be able to use php code on a page with an extension other than .php, you need a server which supports .htaccess files.</p>
<p>To add an extension to be parsed for php, create or edit a file called .htaccess (with the dot first) containing the following line:<br />
<code>AddType application/x-httpd-php .html .moo .htm</code><br />
This tells the server to check for php code and execute it in files with extensions .html, .moo or .htm. So upload that .htaccess file in the same folder as your .html files with PHP code inside them (using PHP tags: <code>&lt;?php ... ?&gt;</code>) then when you view them in the browser, the PHP should be dealt with as you'd expect from a PHP page.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiposaurus.co.uk/2011/04/how-to-use-php-in-pages-with-a-html-extension-or-any-other/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How To: PHP - Roots in PHP (Square Root, Cube Root and nth Root)</title>
		<link>http://tiposaurus.co.uk/2009/06/how-to-php-roots-in-php-square-root-cube-root-and-nth-root/</link>
		<comments>http://tiposaurus.co.uk/2009/06/how-to-php-roots-in-php-square-root-cube-root-and-nth-root/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 20:38:03 +0000</pubDate>
		<dc:creator>Tiposaurus</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[cube root]]></category>
		<category><![CDATA[nth root]]></category>
		<category><![CDATA[power]]></category>
		<category><![CDATA[roots]]></category>
		<category><![CDATA[square root]]></category>

		<guid isPermaLink="false">http://tiposaurus.co.uk/2009/06/how-to-php-roots-in-php-square-root-cube-root-and-nth-root/</guid>
		<description><![CDATA[To find the nth root of a number in PHP, we can use the pow(base, power) function, for example the cube root of 27 is equal to 27 raised to the power of 1/3, , since .  In general the nth root of x, . To calculate the square root of a number, we can [...]]]></description>
			<content:encoded><![CDATA[<p>To find the nth root of a number in PHP, we can use the <code>pow(base, power)</code> function, for example the cube root of 27 is equal to 27 raised to the power of 1/3, <span class='MathJax_Preview'><img src='http://tiposaurus.co.uk/wp-content/plugins/latex/cache/tex_e4b15074e4e5cd63faf08437958927da.gif' style='vertical-align: middle; border: none; ' class='tex' alt="\sqrt[3]{27} = 27^{1/3}" /></span><script type='math/tex'>\sqrt[3]{27} = 27^{1/3}</script>, since <span class='MathJax_Preview'><img src='http://tiposaurus.co.uk/wp-content/plugins/latex/cache/tex_984cdc4ccfd45d5aa7b3bc0f224c9eec.gif' style='vertical-align: middle; border: none; ' class='tex' alt="3^3 = 27" /></span><script type='math/tex'>3^3 = 27</script>.  In general the nth root of x, <span class='MathJax_Preview'><img src='http://tiposaurus.co.uk/wp-content/plugins/latex/cache/tex_36016ebb1b1de6eb75941fc7286122a8.gif' style='vertical-align: middle; border: none; ' class='tex' alt="\sqrt[n]{x} = x^{1/n}" /></span><script type='math/tex'>\sqrt[n]{x} = x^{1/n}</script>.</p>
<p>To calculate the square root of a number, we can also use the <code>sqrt(number)</code> function.</p>
<h3>Example</h3>
<p>Some example code showing how to calculate roots in PHP is below:</p>
<pre>&lt;?php
// Square root
echo sqrt(49) . "&lt;br /&gt;";  // square root of 49
echo pow(49,1/2) . "&lt;br /&gt;"; // alternative to square root of 49
echo pow(8,1/2). "&lt;br /&gt;"; // square root of 8

// cube root
echo pow(8,1/3). "&lt;br /&gt;"; // cube root of 8
echo pow(27,1/3). "&lt;br /&gt;"; // cube root of 27

// higher roots
echo pow(390625,1/4). "&lt;br /&gt;";
echo "25^4 = " . pow(25,4) . "&lt;br /&gt;";

echo pow(1234, 1/6). "&lt;br /&gt;";
?&gt;</pre>
<p>The output from this example is as follows:</p>
<pre>7
7
2.8284271247462
2
3
25
25^4 = 390625
3.2750594908837</pre>
]]></content:encoded>
			<wfw:commentRss>http://tiposaurus.co.uk/2009/06/how-to-php-roots-in-php-square-root-cube-root-and-nth-root/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>HowTo: PHP - Raise a Number to the Power of Another (exponent in PHP)</title>
		<link>http://tiposaurus.co.uk/2009/06/howto-php-raise-a-number-to-the-power-of-another-exponent-in-php/</link>
		<comments>http://tiposaurus.co.uk/2009/06/howto-php-raise-a-number-to-the-power-of-another-exponent-in-php/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 20:37:19 +0000</pubDate>
		<dc:creator>Tiposaurus</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[exponent]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[power of]]></category>
		<category><![CDATA[raise power]]></category>

		<guid isPermaLink="false">http://tiposaurus.co.uk/?p=6</guid>
		<description><![CDATA[You might need to raise a number to the power of another in a PHP script, for example (sometimes written 3^5), or in general . This may also be used with negative powers where .  Of course, you'd probably want to do this for more complicated examples! PHP has a function built in to do [...]]]></description>
			<content:encoded><![CDATA[<p>You might need to raise a number to the power of another in a PHP script, for example <span class='MathJax_Preview'><img src='http://tiposaurus.co.uk/wp-content/plugins/latex/cache/tex_b0072d9bc146289d3b03b3f0feeaa8c3.gif' style='vertical-align: middle; border: none; ' class='tex' alt="3^5 = 3 \times 3 \times 3 \times 3 \times 3" /></span><script type='math/tex'>3^5 = 3 \times 3 \times 3 \times 3 \times 3</script> (sometimes written 3^5), or in general <span class='MathJax_Preview'><img src='http://tiposaurus.co.uk/wp-content/plugins/latex/cache/tex_b41952e9dfed8e1ed562fddafeca7c70.gif' style='vertical-align: middle; border: none; padding-bottom:1px;' class='tex' alt="x^n" /></span><script type='math/tex'>x^n</script>. This may also be used with negative powers where <span class='MathJax_Preview'><img src='http://tiposaurus.co.uk/wp-content/plugins/latex/cache/tex_365fa071480f16c8bf56fa949858eaa3.gif' style='vertical-align: middle; border: none; ' class='tex' alt="x^{-n} = \frac{1}{x^n}" /></span><script type='math/tex'>x^{-n} = \frac{1}{x^n}</script>.  Of course, you'd probably want to do this for more complicated examples!</p>
<p>PHP has a function built in to do this: <span class='MathJax_Preview'><img src='http://tiposaurus.co.uk/wp-content/plugins/latex/cache/tex_f373ea1e150dfbf415115e736ceb54a0.gif' style='vertical-align: middle; border: none; padding-bottom:1px;' class='tex' alt="x^n = " /></span><script type='math/tex'>x^n = </script> <code>pow(x,n)</code>.</p>
<h3>Examples of 'Power Of'</h3>
<p>Here are some examples, which raise a number to the power of another and display the output.  In the examples, &lt;br /&gt; inserts a line break to display the results neatly.</p>
<pre>&lt;?php
echo "3^5 = " . pow(3,5) . "&lt;br /&gt;"; // 243
echo "2^9 = " . pow(2,9) . "&lt;br /&gt;"; // 512
// Anything raised to the power of 0 is 1:
echo "99^0 = " . pow(99,0) . "&lt;br /&gt;"; // 1
// Negative powers:
echo "3^-1 = 1/3 = " . pow(3,-1) . "&lt;br /&gt;"; // 1/3 = 0.3333
echo "3^-2 = 1/(3^2) = " . pow(3,-2) . "&lt;br /&gt;"; // 1/9 = 0.1111
echo "&lt;br /&gt;";

// Loop through 2 raised to the 0,1,2,...,10:
for($i=0;$i&lt;=10;$i++)
{
  echo "2^" . $i . " = " . pow(2,$i) . "&lt;br /&gt;";
}
?&gt;</pre>
<p>Output of the example:</p>
<pre>3^5 = 243
2^9 = 512
99^0 = 1
3^-1 = 1/3 = 0.33333333333333
3^-2 = 1/(3^2) = 0.11111111111111

2^0 = 1
2^1 = 2
2^2 = 4
2^3 = 8
2^4 = 16
2^5 = 32
2^6 = 64
2^7 = 128
2^8 = 256
2^9 = 512
2^10 = 1024</pre>
<p>Good luck! If you have any questions about this article then please post a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://tiposaurus.co.uk/2009/06/howto-php-raise-a-number-to-the-power-of-another-exponent-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

