<?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>Ala'a Ibrahim &#187; PHP</title>
	<atom:link href="http://blog.alaa-ibrahim.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.alaa-ibrahim.com</link>
	<description>THE IDEAS OF SOMEONE YOU WANT TO HEAR FROM</description>
	<lastBuildDate>Wed, 05 May 2010 09:08:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>New Script &#8211; PHP Absolute Path Detector</title>
		<link>http://blog.alaa-ibrahim.com/new-script-php-absolute-path-detector/</link>
		<comments>http://blog.alaa-ibrahim.com/new-script-php-absolute-path-detector/#comments</comments>
		<pubDate>Wed, 05 May 2010 09:08:52 +0000</pubDate>
		<dc:creator>Ala'a Ibrahim</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Absolute Path]]></category>
		<category><![CDATA[Coding Practices]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Github]]></category>

		<guid isPermaLink="false">http://blog.alaa-ibrahim.com/?p=363</guid>
		<description><![CDATA[This script trys to check for any direct Absolute Path call for the function include, include_once, require, require_once, fopen, file_get_contents, and file_put_contents in the code, and report them back.
Well, it&#8217;s a bit useful for detecting were are some of the hardcoded paths are used into a PHP Project. Hope you will find it useful.
get from [...]]]></description>
		<wfw:commentRss>http://blog.alaa-ibrahim.com/new-script-php-absolute-path-detector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Training, does it really worth it</title>
		<link>http://blog.alaa-ibrahim.com/zend-training-does-it-really-worth-it/</link>
		<comments>http://blog.alaa-ibrahim.com/zend-training-does-it-really-worth-it/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 22:28:55 +0000</pubDate>
		<dc:creator>Ala'a Ibrahim</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[Zend]]></category>

		<guid isPermaLink="false">http://blog.alaa-ibrahim.com/?p=334</guid>
		<description><![CDATA[Every now and then I recieve some emails from Zend about training (I have an account there for the certifications I got), usualy they go directly into the trash.
But this time I was curious I opened the email, which has links to there website, not much of interesting topics for training courses, but damn, the [...]]]></description>
		<wfw:commentRss>http://blog.alaa-ibrahim.com/zend-training-does-it-really-worth-it/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pass by Value or Reference or Handle</title>
		<link>http://blog.alaa-ibrahim.com/pass-by-value-or-reference-or-handle/</link>
		<comments>http://blog.alaa-ibrahim.com/pass-by-value-or-reference-or-handle/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 03:10:07 +0000</pubDate>
		<dc:creator>Ala'a Ibrahim</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[Handle]]></category>
		<category><![CDATA[Pointers]]></category>

		<guid isPermaLink="false">http://blog.alaa-ibrahim.com/?p=264</guid>
		<description><![CDATA[I&#8217;ve been expermenting with ruby for sometime now, and I&#8217;m really enjoying it, and I&#8217;m now coping with &#8216;#&#8217; comments  
Now one of the points that&#8217;s about functions, is how do they pass, by value, or by reference. So to try out Ruby.



#!/usr/bin/env ruby


&#160;


def changeValue&#40;x&#41;


&#160; &#160; x = 10


end


&#160;


y = 5


p y


p changeValue&#40;y&#41;


p y



The [...]]]></description>
		<wfw:commentRss>http://blog.alaa-ibrahim.com/pass-by-value-or-reference-or-handle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gentoo Cache Mirror using apache and php</title>
		<link>http://blog.alaa-ibrahim.com/gentoo-cache-mirror-using-apache-and-php/</link>
		<comments>http://blog.alaa-ibrahim.com/gentoo-cache-mirror-using-apache-and-php/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 14:40:25 +0000</pubDate>
		<dc:creator>Ala'a Ibrahim</dc:creator>
				<category><![CDATA[Free Software & Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[mirror]]></category>

		<guid isPermaLink="false">http://guru.alaa-ibrahim.com/?p=45</guid>
		<description><![CDATA[When you have more than one gentoo machine, a good thing to do to manimize the bandwidth usage, is to run some local mirrors, so that you would get the file only once, for all the machines.

For the portage tree, you can easily see an implementation for it on http://www.gentoo.org/doc/en/rsync.xml. But the problem comes with [...]]]></description>
		<wfw:commentRss>http://blog.alaa-ibrahim.com/gentoo-cache-mirror-using-apache-and-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Good Old sscanf</title>
		<link>http://blog.alaa-ibrahim.com/good-old-sscanf/</link>
		<comments>http://blog.alaa-ibrahim.com/good-old-sscanf/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 04:06:10 +0000</pubDate>
		<dc:creator>Ala'a Ibrahim</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[sscanf]]></category>

		<guid isPermaLink="false">http://guru.alaa-ibrahim.com/2008/02/28/good-old-sscanf/</guid>
		<description><![CDATA[Working in PHP, all this time, and the big uses you find in regex, and all the string processing we need to, could make us forget our old friend that can easily solve a problem.
sscanf, do you remember it, well, for quite some time I didn&#8217;t, until I saw it in a random code I [...]]]></description>
		<wfw:commentRss>http://blog.alaa-ibrahim.com/good-old-sscanf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP5 CAPTCHA</title>
		<link>http://blog.alaa-ibrahim.com/php5-captcha/</link>
		<comments>http://blog.alaa-ibrahim.com/php5-captcha/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 13:19:34 +0000</pubDate>
		<dc:creator>Ala'a Ibrahim</dc:creator>
				<category><![CDATA[Free Software & Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[CAPTCHA]]></category>
		<category><![CDATA[php5]]></category>

		<guid isPermaLink="false">http://guru.alaa-ibrahim.com/2008/02/16/php5-captcha/</guid>
		<description><![CDATA[I&#8217;ve written a small CAPTCHA library, in an OO style, and I love to share it with you
http://sourceforge.net/projects/php5captcha/
Related Posts:Terra Sancta Concert MP3sApple Launches New Site for Open SourceZend Certificate: PHP5 Exam FestivalTrust No OneYouth Against Corruption &#8211; Shoo Hal Ayam ConcertPowered by Contextual Related Posts]]></description>
		<wfw:commentRss>http://blog.alaa-ibrahim.com/php5-captcha/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
