<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.2" -->
<rss version="0.92">
<channel>
	<title>PHP-ist: All about learning PHP, frameworks, tips and tricks</title>
	<link>http://php.fallenray.com</link>
	<description>PHP4, PHP5, cakephp, codeigniter, code example (scriptlets / snipplets) and many easy and effective way to learn</description>
	<lastBuildDate>Thu, 06 Mar 2008 07:12:01 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>PHP5: Screen scraping with DOM and XPath</title>
		<description>This tutorial is continuation from previous yahoo screen-scraping using PHP4 tutorial.
We will try different method using DOM and XPath which only supported in PHP5.

First, a bit knowledge of XPath is required. More about XPATH can be read on:
http://www.zvon.org/xxl/XPathTutorial/General/examples.html

Also there's small concern that using XPATH is a bit slower than pure ...</description>
		<link>http://php.fallenray.com/php5/php5-screen-scraping-with-dom-and-xpath/</link>
			</item>
	<item>
		<title>CakePHP: How to add Search Engine Friendly (SEF) URLs</title>
		<description>How many times you wondered how great it would be if your URLs didn't look so much like:
···http://www.server.com/posts/view/1058
But more like:
···http://www.server.com/posts/view/my_first_post

Read the rest on:
http://bakery.cakephp.org/articles/view/adding-friendly-urls-to-the-cake-blog-tutorial </description>
		<link>http://php.fallenray.com/cakephp/cakephp-how-to-add-search-engine-friendly-sef-urls/</link>
			</item>
	<item>
		<title>PHP4: How to Steal from Yahoo! (another Web Screen Scraper)</title>
		<description>If you've been wondering on how to scrape some information from your favorite website. This web screen scraping techniques has already there since dinosaur age. Here's an example on how to do it in PHP 4. Thanks to:
Mozilla Firefox and Firebug for spying and taking overall bird view so we ...</description>
		<link>http://php.fallenray.com/php4/php4-how-to-steal-from-yahoo-another-web-screen-scraper/</link>
			</item>
	<item>
		<title>Cake PHP: Simple Contact Form Tutorial!</title>
		<description>This guide provide a quick tutorial covering simple contact form for CakePHP v1.2, based on this post
Download code example here! CakePHP 1.2 Simple Contact Form.zip

1. Create the VIEW in cake/app/views/contact/contact.ctp
[php]
 
	

	 
		
	
	
	
		
		
	
	
		
		
	
	
		
		
	
	
		
	
	
		All fields are required!
	
	

[/php]

2. Create Email COMPONENT, cake/app/controllers/components/email.php
[php]

[/php]

3. Create the CONTROLLER, cake/app/controllers/contact_controller.php
[php]

[/php]

FINALLY
After all that just test it in your ...</description>
		<link>http://php.fallenray.com/cakephp/cake-php-simple-contact-form-tutorial/</link>
			</item>
	<item>
		<title>CakePHP: How To Make Controller Without a Model?</title>
		<description>[php]
class MyController extends AppController
{
    // var $uses = null; works too, BUT MIGHT INTRODUCE BUGS
    var $uses = array();

    function index()
    {
    }
}
[/php]

From: http://cakebaker.42dh.com/


Tags: php4, cakephp,  code example
 </description>
		<link>http://php.fallenray.com/cakephp/cakephp-how-to-make-controller-without-a-model/</link>
			</item>
	<item>
		<title>CakePHP: How to Add Theme Support?</title>
		<description>Now with CakePHP v1.2 (beta) we can easily add theme with its ThemeView class.
This guide about how to add theme into fresh CakePHP installation will be explained in very basic step-by-step . I learn it frrom here.
Updated: sample code provided

Download code example, extract inside CakePHP root.

First!
Create a file called app_controller.php ...</description>
		<link>http://php.fallenray.com/cakephp/cakephp-how-to-add-theme-support/</link>
			</item>
	<item>
		<title>CakePHP: How To Make Model Without a Table?</title>
		<description>[php]
class ModelWithoutTable extends AppModel
{
var $useTable = false;
}
[/php]

From: http://cakebaker.42dh.com/


Tags: php4, cakephp,  code example
 </description>
		<link>http://php.fallenray.com/cakephp/cakephp-how-to-make-model-without-a-table/</link>
			</item>
</channel>
</rss>
