<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.6.1" -->
<rss version="0.92">
<channel>
	<title>PHP2k - PHP Tutorials</title>
	<link>http://www.php2k.com/blog</link>
	<description>Free PHP Tutorials</description>
	<lastBuildDate>Tue, 16 Dec 2008 06:50:43 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Tutorial Photoshop design white gold ring logo stock photo in photoshop.</title>
		<description>Today I am telling you about How to Create Photoshop design white gold ring logo stock photo in photoshop.

[1] Take a new file of 500 pixels, 500 pixels, of resolution 72 dpi in the RGB mode.

[2] Using the "Pen Tool" draw a shape as shown below right click
select the make ...</description>
		<link>http://www.php2k.com/blog/beginners-photoshop-tutorials/tutorial-photoshop-design-white-gold-ring-logo-stock-photo-in-photoshop/</link>
			</item>
	<item>
		<title>Tutorial Photoshop steel kidney tray logo stock in photoshop.</title>
		<description>Today I am telling you about How to Create Photoshop steel kidney tray logo stock in photoshop.

[1] Take a new file of 500 pixels, 350 pixels, of resolution 72 dpi in the RGB mode.

[2] Using the "Pen Tool" draw a shape as shown below right click
select the make selection and ...</description>
		<link>http://www.php2k.com/blog/beginners-photoshop-tutorials/tutorial-photoshop-steel-kidney-tray-logo-stock-in-photoshop/</link>
			</item>
	<item>
		<title>test</title>
		<description>test </description>
		<link>http://www.php2k.com/blog/php/test/</link>
			</item>
	<item>
		<title>Placing Comments in PHP</title>
		<description>In this small and short post i will be showing you how to place comments in your php coding for others to see which does not get shown when the file is executed only viewable in the source code.

First i will show you how to use a single line comment. ...</description>
		<link>http://www.php2k.com/blog/php/placing-comments-in-php/</link>
			</item>
	<item>
		<title>Include() - Include a file</title>
		<description>The include() function is used to include another file in the current file. If you have set variables in one file i.e. config.php and you would like to include it in another file i.e. index.php you would use the include() function.
I will show you a example of this. The following ...</description>
		<link>http://www.php2k.com/blog/php/include-include-a-file/</link>
			</item>
	<item>
		<title>Rand() Random Number</title>
		<description>At some point you will want a random number string but dont have the time to create new ones all the time, this is where the rand() function comes in. rand() Function creates random numbers from the numbers you set.
&#60;?php

echo rand(0, 10);

?&#62;
The code above will create and display a random ...</description>
		<link>http://www.php2k.com/blog/php/rand-random-number/</link>
			</item>
	<item>
		<title>Alternative to file_get_contents() using cUrl</title>
		<description>The function file_get_contents() reads a file into a string. Using the function doesnt always work or sometimes uses more server memory. Another way of grabbing content from a url is using cUrl. cUrl allows you to grab/retrieve content from another server/url.

I have written a simple function which will retrieve content ...</description>
		<link>http://www.php2k.com/blog/php/advanced-php/alternative-to-file_get_contents-using-curl/</link>
			</item>
	<item>
		<title>htmlentities()</title>
		<description>htmlentities function converts all applicable characters to HTML entities. For example "&#60;b&#62;Hello World&#60;/b&#62;" is converted to " &#38;lt;b&#38;gt;Hello World&#38;lt;/b&#38;gt; "
Using this function is simple and easy. I have coded a example below;


&#60;?php

$text = '&#60;b&#62;Hello World&#60;/b&#62;';
echo htmlentities($text);
?&#62;

If you have any questions please post a comment and i will contact you as ...</description>
		<link>http://www.php2k.com/blog/php/htmlentities/</link>
			</item>
	<item>
		<title>Home Made PHP Encoder &#038; Decoder</title>
		<description>Not everyone can afford a encoder or trust them, so why not create your own basic encoder! In this tutorial i will show you how to encode letters into another letter of your choice. For example the letter "a" will be known as letter "f" and so on.

First of all ...</description>
		<link>http://www.php2k.com/blog/php/advanced-php/home-made-php-encoder-decoder/</link>
			</item>
	<item>
		<title>Variables</title>
		<description>Variables in PHP are represented by a dollar sign followed by the     name of the variable. The variable name is case-sensitive.


&#60;?php

$name = 'John';
$age = '23';
$location = 'London';
echo 'My name is: $name and i am $age years old, currently living in $location';
?&#62;

This is output the following:


My name ...</description>
		<link>http://www.php2k.com/blog/php/variables/</link>
			</item>
</channel>
</rss>
