<?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>Woshka&#039;s Experiences &#187; PHP</title>
	<atom:link href="http://woshka.com/blog/php/feed" rel="self" type="application/rss+xml" />
	<link>http://woshka.com/blog</link>
	<description></description>
	<lastBuildDate>Sun, 01 Jan 2012 21:17:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<atom:link rel="next" href="http://woshka.com/blog/php/feed?page=2" />

		<item>
		<title>debugging this issue with php Fatal error: Allowed memory size of 553648128 bytes exhausted (tried to allocate 261900 bytes) in</title>
		<link>http://woshka.com/blog/php/debugging-this-issue-with-php-fatal-error-allowed-memory-size-of-553648128-bytes-exhausted-tried-to-allocate-261900-bytes-in.html</link>
		<comments>http://woshka.com/blog/php/debugging-this-issue-with-php-fatal-error-allowed-memory-size-of-553648128-bytes-exhausted-tried-to-allocate-261900-bytes-in.html#comments</comments>
		<pubDate>Sun, 05 Jun 2011 02:04:39 +0000</pubDate>
		<dc:creator>voshka</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://woshka.com/blog/?p=1057</guid>
		<description><![CDATA[I was developing a project with php
I had some picture items which I wanted to delete them using object oriented model
an object instance of a picture would call a destroy() method to delete that picture from both the database table and from the file directory
but I dont know I couldn&#8217;t ...]]></description>
		<wfw:commentRss>http://woshka.com/blog/php/debugging-this-issue-with-php-fatal-error-allowed-memory-size-of-553648128-bytes-exhausted-tried-to-allocate-261900-bytes-in.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Echo and print are used to output in PHP</title>
		<link>http://woshka.com/blog/php/php-training/php-lesson1-variables/echo-and-print-are-used-to-output-in-php.html</link>
		<comments>http://woshka.com/blog/php/php-training/php-lesson1-variables/echo-and-print-are-used-to-output-in-php.html#comments</comments>
		<pubDate>Sat, 13 Mar 2010 00:03:43 +0000</pubDate>
		<dc:creator>voshka</dc:creator>
				<category><![CDATA[php-lesson1(variables)]]></category>

		<guid isPermaLink="false">http://woshka.com/blog/?p=441</guid>
		<description><![CDATA[these two functions are used to output the result of the statement you defined to them to the browser.Echo and print functions unline other function structure can be followed even with or without the paranteses.
Example of using Echo:
echo &#34;this is without parenteses&#34;;
or with the parenteses thi the same result;
echo &#40;&#34;this ...]]></description>
		<wfw:commentRss>http://woshka.com/blog/php/php-training/php-lesson1-variables/echo-and-print-are-used-to-output-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>String Type in PHP</title>
		<link>http://woshka.com/blog/php/php-training/php-lesson1-variables/string-type-in-php.html</link>
		<comments>http://woshka.com/blog/php/php-training/php-lesson1-variables/string-type-in-php.html#comments</comments>
		<pubDate>Fri, 12 Mar 2010 14:14:30 +0000</pubDate>
		<dc:creator>voshka</dc:creator>
				<category><![CDATA[php-lesson1(variables)]]></category>

		<guid isPermaLink="false">http://woshka.com/blog/?p=428</guid>
		<description><![CDATA[String Type
a string is simply a sequence of characters treated as a contiguous group.Such groups are
typically delimited by single or double quotes,
String Examples:
$str_sq = 'single quat string';
$str_dq = &#34;double quat string&#34;;
$str_zc = &#34;&#34;;//string with zero characters;
as I mentioned a string can be enclosed both in single and double quotation marks,that ...]]></description>
		<wfw:commentRss>http://woshka.com/blog/php/php-training/php-lesson1-variables/string-type-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NULL Type in PHP</title>
		<link>http://woshka.com/blog/php/php-training/php-lesson1-variables/null-type-in-php.html</link>
		<comments>http://woshka.com/blog/php/php-training/php-lesson1-variables/null-type-in-php.html#comments</comments>
		<pubDate>Thu, 11 Mar 2010 23:20:22 +0000</pubDate>
		<dc:creator>voshka</dc:creator>
				<category><![CDATA[php-lesson1(variables)]]></category>

		<guid isPermaLink="false">http://woshka.com/blog/?p=423</guid>
		<description><![CDATA[The Type NULL has only one possible value which is the value NULL.To give a variable the NULL value you should simply assign it such as follows:
$MyVariable = NULL;
the NUL type is capitalized by convention, but in fact it is incasesensitive. you can give the NULL type in lowercase letter ...]]></description>
		<wfw:commentRss>http://woshka.com/blog/php/php-training/php-lesson1-variables/null-type-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boolean Types in PHP</title>
		<link>http://woshka.com/blog/php/php-training/php-lesson1-variables/boolean-types-in-php.html</link>
		<comments>http://woshka.com/blog/php/php-training/php-lesson1-variables/boolean-types-in-php.html#comments</comments>
		<pubDate>Thu, 11 Mar 2010 15:48:26 +0000</pubDate>
		<dc:creator>voshka</dc:creator>
				<category><![CDATA[php-lesson1(variables)]]></category>

		<guid isPermaLink="false">http://woshka.com/blog/?p=414</guid>
		<description><![CDATA[Boolean contains TRUE or FALSE value, which is specificly used in if statements that is one of the baces in control structure.
Boolean provides constants that are TRUE and FALSE
Interpreting other Types as Booleans
there are also some cases that are interpreted as TRUE or False values when they act like a ...]]></description>
		<wfw:commentRss>http://woshka.com/blog/php/php-training/php-lesson1-variables/boolean-types-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Double Type in PHP</title>
		<link>http://woshka.com/blog/php/php-training/php-lesson1-variables/double-type-in-php.html</link>
		<comments>http://woshka.com/blog/php/php-training/php-lesson1-variables/double-type-in-php.html#comments</comments>
		<pubDate>Sun, 07 Mar 2010 01:09:17 +0000</pubDate>
		<dc:creator>voshka</dc:creator>
				<category><![CDATA[php-lesson1(variables)]]></category>

		<guid isPermaLink="false">http://woshka.com/blog/?p=378</guid>
		<description><![CDATA[doubles are floating point-numbers
I wil exmaple a double
Example:
$My_double = 385.874;
$My_double2 = 1.5;
$My_double3 = 0.556;
$My_double4 = 9.0;
$My_double5 = 0.00003;
when doubles are having a rounded number it will not save it as an integer, and will keep its type of format as a double
$another_double = $My_double4 + 10;
that will produce a doule ...]]></description>
		<wfw:commentRss>http://woshka.com/blog/php/php-training/php-lesson1-variables/double-type-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integer Type in PHP</title>
		<link>http://woshka.com/blog/php/php-training/php-lesson1-variables/integer-type-in-php.html</link>
		<comments>http://woshka.com/blog/php/php-training/php-lesson1-variables/integer-type-in-php.html#comments</comments>
		<pubDate>Sun, 07 Mar 2010 00:36:10 +0000</pubDate>
		<dc:creator>voshka</dc:creator>
				<category><![CDATA[php-lesson1(variables)]]></category>

		<guid isPermaLink="false">http://woshka.com/blog/?p=375</guid>
		<description><![CDATA[Integer types are simple, the contain the simple positive and negetive numbers and they can both assigned directly or bypassign an expression to a variable
Example:
$Myint= 684
$sample number = 8496-48683
yo can also assigne other integer bases instead of base 10 to a variable
for assigning base 8 just ad miness(-)behind the number ...]]></description>
		<wfw:commentRss>http://woshka.com/blog/php/php-training/php-lesson1-variables/integer-type-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Variable Types in PHP</title>
		<link>http://woshka.com/blog/php/php-training/php-lesson1-variables/variable-types-in-php.html</link>
		<comments>http://woshka.com/blog/php/php-training/php-lesson1-variables/variable-types-in-php.html#comments</comments>
		<pubDate>Sat, 06 Mar 2010 23:11:12 +0000</pubDate>
		<dc:creator>voshka</dc:creator>
				<category><![CDATA[php-lesson1(variables)]]></category>

		<guid isPermaLink="false">http://woshka.com/blog/?p=370</guid>
		<description><![CDATA[There are totally eight type is PHP;integeres, double, Booleans, strings, arrays, object, NULL and resources
here is to have a summary of all of these variables that PHP contains
Integers are the whole numbers without a decimal point like 34956
Doubles are floating-point-point numbers like 3.14159 or 56.0
Boolean has only two values
NULL is ...]]></description>
		<wfw:commentRss>http://woshka.com/blog/php/php-training/php-lesson1-variables/variable-types-in-php.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Constants in PHP</title>
		<link>http://woshka.com/blog/php/php-training/php-lesson1-variables/constants-in-php.html</link>
		<comments>http://woshka.com/blog/php/php-training/php-lesson1-variables/constants-in-php.html#comments</comments>
		<pubDate>Fri, 05 Mar 2010 01:14:09 +0000</pubDate>
		<dc:creator>voshka</dc:creator>
				<category><![CDATA[php-lesson1(variables)]]></category>

		<guid isPermaLink="false">http://woshka.com/blog/?p=362</guid>
		<description><![CDATA[PHP offers constants which their value will not be reassigned regardless of ehat variables do so their value will be consistent.
Constants definitions: Constants do not have $ before their name and by convention they will be named with upercase letters.Constants have global scope which can be accessible within the function ...]]></description>
		<wfw:commentRss>http://woshka.com/blog/php/php-training/php-lesson1-variables/constants-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Variable Scope In PHP</title>
		<link>http://woshka.com/blog/php/php-training/php-lesson1-variables/variable-scope-in-php.html</link>
		<comments>http://woshka.com/blog/php/php-training/php-lesson1-variables/variable-scope-in-php.html#comments</comments>
		<pubDate>Thu, 04 Mar 2010 16:59:19 +0000</pubDate>
		<dc:creator>voshka</dc:creator>
				<category><![CDATA[php-lesson1(variables)]]></category>

		<guid isPermaLink="false">http://woshka.com/blog/?p=359</guid>
		<description><![CDATA[Scope is a technical term which exist in every programming language, that provide a rule for name of the variables has the same meaning in two difrent places
any php variable not inside a function has global scope,meaning that if you assign avariable inside of a PHP file it will have ...]]></description>
		<wfw:commentRss>http://woshka.com/blog/php/php-training/php-lesson1-variables/variable-scope-in-php.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

