<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="http://feeds.feedburner.com/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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" version="2.0">

<channel>
	<title>Zend PHP 5 Certification Blog</title>
	
	<link>http://zend.is-hacked.com</link>
	<description>Leading Up to and takeing the Zend PHP 5 Certification test.</description>
	<pubDate>Sun, 21 Dec 2008 18:29:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/ZendPhp5Certification" type="application/rss+xml" /><item>
		<title>Big News for Zend PHP5 Certification Blog</title>
		<link>http://zend.is-hacked.com/2008/news-zend-php5-certification/</link>
		<comments>http://zend.is-hacked.com/2008/news-zend-php5-certification/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 18:29:55 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[Zend Classification General]]></category>

		<guid isPermaLink="false">http://zend.is-hacked.com/?p=346</guid>
		<description><![CDATA[Why little Updates?
I started this Blog as a small project as a revision Aid for my upcoming Zend PHP5 Certification, I have recently been side tract with Business CodePHP.co.uk (yes, a web developer with no website.. Ive been busy!)
How did it get so popular?
Well I covered every topic, Must be good for seo! .. Its [...]]]></description>
		<wfw:commentRss>http://zend.is-hacked.com/2008/news-zend-php5-certification/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Differences Between PHP 4 and 5</title>
		<link>http://zend.is-hacked.com/2008/differences-between-php-4-and-5/</link>
		<comments>http://zend.is-hacked.com/2008/differences-between-php-4-and-5/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 17:54:32 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[11. PHP 4/5 Differences]]></category>

		<guid isPermaLink="false">http://zend.is-hacked.com/?p=342</guid>
		<description><![CDATA[Language Features
• PHP 5 allows limited type hinting. This allows you to specify that the parameter to a function or class method can only be of a specific class (or one of its subclasses), or an array. However, you may not specify any other scalar types.
• The foreach construct now supports by-reference declaration of the [...]]]></description>
		<wfw:commentRss>http://zend.is-hacked.com/2008/differences-between-php-4-and-5/feed/</wfw:commentRss>
		</item>
		<item>
		<title>File Streams</title>
		<link>http://zend.is-hacked.com/2008/file-streams/</link>
		<comments>http://zend.is-hacked.com/2008/file-streams/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 17:40:38 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[10. Streams and Network Programming]]></category>

		<guid isPermaLink="false">http://zend.is-hacked.com/?p=340</guid>
		<description><![CDATA[Stream Connects
Steam connects allow us to pass options to the steam handlers that we use to access network resources. We can instruct HTTP stream to perform a POST operation, so we can use PHP to submit forms on others websites.

$options = array&#40;’http’ =&#62; array&#40;’user_agent’ =&#62; &#34;PHP Browser&#34;,’max_redirects’ =&#62; 3&#41;&#41;;
$http_options = stream_context_create&#40;$options&#41;;
$file = file_get_contents&#40;&#34;http://localhost/&#34;, false, $http_options&#41;;

As [...]]]></description>
		<wfw:commentRss>http://zend.is-hacked.com/2008/file-streams/feed/</wfw:commentRss>
		</item>
		<item>
		<title>File System Functions</title>
		<link>http://zend.is-hacked.com/2008/php-file-system-functions/</link>
		<comments>http://zend.is-hacked.com/2008/php-file-system-functions/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 15:07:55 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[10. Streams and Network Programming]]></category>

		<guid isPermaLink="false">http://zend.is-hacked.com/?p=334</guid>
		<description><![CDATA[Streams and Network Programming - File System Functions
The PHP5 Zend Certification contains questions about file system functions, they do this so much that their free on-line sample test first question is:
How can precisely one byte be read from a file, pointed by $fp?
A) 		fseek($fp, 1)
B) 		fgets($fp, 1)
C) 		fgetss($fp, 1)
D) 		fgetc($fp)
E) 		All of the above
&#8230;. The [...]]]></description>
		<wfw:commentRss>http://zend.is-hacked.com/2008/php-file-system-functions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP File Reading and Writing</title>
		<link>http://zend.is-hacked.com/2008/php-file-reading-and-writing/</link>
		<comments>http://zend.is-hacked.com/2008/php-file-reading-and-writing/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 12:08:00 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[10. Streams and Network Programming]]></category>

		<guid isPermaLink="false">http://zend.is-hacked.com/?p=326</guid>
		<description><![CDATA[Streams and Network Programming - File Reading and Writing
Whenever you access a file using fopen(), file(), readfile(), include, require and a multitude of other functions, PHP uses the functionality provided by the streams layer to do the actual “dirty work.”. PHP Streams allows us to access php input/output, standard file access, http resources, ftp and [...]]]></description>
		<wfw:commentRss>http://zend.is-hacked.com/2008/php-file-reading-and-writing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>XML: XPath</title>
		<link>http://zend.is-hacked.com/2008/xml-xpath/</link>
		<comments>http://zend.is-hacked.com/2008/xml-xpath/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 11:57:14 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[06. XML and Web Services]]></category>

		<guid isPermaLink="false">http://zend.is-hacked.com/?p=240</guid>
		<description><![CDATA[XPath (XML Path Language) is used to access and search XML documents, it is a query language for retrieving data from an XML document. XPath can be complex. SimpleXML uses xpath like such SimpleXMLElement::xpath(); if used on root element it will search the entire xml document or if used on a child it will search [...]]]></description>
		<wfw:commentRss>http://zend.is-hacked.com/2008/xml-xpath/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web Features: Cookies</title>
		<link>http://zend.is-hacked.com/2008/web-features-cookies/</link>
		<comments>http://zend.is-hacked.com/2008/web-features-cookies/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 16:20:08 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[09. Web Features]]></category>

		<guid isPermaLink="false">http://zend.is-hacked.com/?p=324</guid>
		<description><![CDATA[Cookies allow us to store data on the users computer, so we can identify them and they can have their own options. It is limited storage wth only 4-6kb. The most common use of cookies is with sessions to store their login data.
Cookies are send by server using headers, they are not secure and can [...]]]></description>
		<wfw:commentRss>http://zend.is-hacked.com/2008/web-features-cookies/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web Features: HTTP Headers</title>
		<link>http://zend.is-hacked.com/2008/web-features-http-headers/</link>
		<comments>http://zend.is-hacked.com/2008/web-features-http-headers/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 16:07:06 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[09. Web Features]]></category>

		<guid isPermaLink="false">http://zend.is-hacked.com/?p=322</guid>
		<description><![CDATA[I know a lot about HTTP Headers, as I have used Wireshark a sniffer of requests from my computer. 
A server responds to a HTTP request with information about the data that is to follow. The data are strings &#8220;key: value&#8221; and are terminated by a newline character.
PHP and your Computer sends and received HTTP [...]]]></description>
		<wfw:commentRss>http://zend.is-hacked.com/2008/web-features-http-headers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web Features: GET and POST data</title>
		<link>http://zend.is-hacked.com/2008/web-features-get-post-data/</link>
		<comments>http://zend.is-hacked.com/2008/web-features-get-post-data/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 15:44:54 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[09. Web Features]]></category>

		<guid isPermaLink="false">http://zend.is-hacked.com/?p=315</guid>
		<description><![CDATA[GET or POST
PHP makes it very easy to handle data sent using either POST or GET. However, this doesn’t mean that you should choose one or the other at random. From a design perspective, a POST transaction indicates that you intend to modify data (i.e.: you are sending information over to the server). A GET [...]]]></description>
		<wfw:commentRss>http://zend.is-hacked.com/2008/web-features-get-post-data/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web Features: Forms</title>
		<link>http://zend.is-hacked.com/2008/web-features-forms/</link>
		<comments>http://zend.is-hacked.com/2008/web-features-forms/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 15:19:00 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[09. Web Features]]></category>

		<guid isPermaLink="false">http://zend.is-hacked.com/?p=311</guid>
		<description><![CDATA[Forms is the cornerstone behind PHP in my opinion, its all out input and output without forms we would be limited. 
We interact with scripts using two HTTP methods GET and POST. The difference is that GET data is sent over the url (index.php?method=get&#038;data=zend) and POST data is sent along with data payload (over HTTP).
Their [...]]]></description>
		<wfw:commentRss>http://zend.is-hacked.com/2008/web-features-forms/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
