<?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>Tech aspirant &#187; framework</title>
	<atom:link href="http://www.techaspirant.com/category/framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techaspirant.com</link>
	<description>The ultimate technology Blog &#124;&#124; My thoughts and finding in brief...arunrajr kadampanad</description>
	<lastBuildDate>Sat, 09 Apr 2011 10:25:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to set default values (input field) in symfony 1.4 generated forms</title>
		<link>http://www.techaspirant.com/how-to-set-values-input-field-in-symfony-1-4-generated-forms/</link>
		<comments>http://www.techaspirant.com/how-to-set-values-input-field-in-symfony-1-4-generated-forms/#comments</comments>
		<pubDate>Mon, 17 May 2010 04:41:35 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[framework]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[doctrine]]></category>
		<category><![CDATA[input]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=351</guid>
		<description><![CDATA[I was trying to set default values for an input field. public function executeNew(sfWebRequest $request) { $this->customer = Doctrine::getTable(&#8216;Customer&#8217;)->find(array($request->getParameter(&#8216;customer&#8217;))); $this->forward404Unless($this->customer); $this->form = new CallLogForm(); $this->form->setDefault(&#8216;customer_id&#8217;,$request->getParameter(&#8216;customer&#8217;)); } This is the way to set hidden values of default values for an input field $this->form->setDefault(&#8216;customer_id&#8217;,$request->getParameter(&#8216;customer&#8217;));]]></description>
		<wfw:commentRss>http://www.techaspirant.com/how-to-set-values-input-field-in-symfony-1-4-generated-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony Study Guide &#8211; Small Project Implementation</title>
		<link>http://www.techaspirant.com/symfony-study-guide-small-project-implementation/</link>
		<comments>http://www.techaspirant.com/symfony-study-guide-small-project-implementation/#comments</comments>
		<pubDate>Sat, 15 May 2010 12:29:38 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[small]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=343</guid>
		<description><![CDATA[Download Symfony Sandbox 1.4 Source : www.symfony-project.org/installation Requirement : Xampp or Wamp Package PHP: 5.2 Above Download Symfony and put this into your website root Rename sf_sandbox to your project name. Here it is CRM open config/properties.yml file and put below details [symfony] name=CRM author=Arun Raj R orm=Doctrine Next thing we have to configure our [...]]]></description>
		<wfw:commentRss>http://www.techaspirant.com/symfony-study-guide-small-project-implementation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony 1.4 Doctrine Pagination</title>
		<link>http://www.techaspirant.com/symfony-1-4-doctrine-pagination/</link>
		<comments>http://www.techaspirant.com/symfony-1-4-doctrine-pagination/#comments</comments>
		<pubDate>Fri, 14 May 2010 06:51:01 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Project Managament]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[symfony 1.4 Doctrine Pagination]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=334</guid>
		<description><![CDATA[Doctrine Pagination is made very simple . public function executeIndex(sfWebRequest $request) { $this-&#62;pager = new sfDoctrinePager('TableName', sfConfig::get('app_max_jobs_on_homepage'); $this-&#62;pager-&#62;setQuery(Doctrine::getTable('TableName')-&#62;createQuery('a')); $this-&#62;pager-&#62;setPage($request-&#62;getParameter('page', 1)); $this-&#62;pager-&#62;init(); } Success page &#60;?php foreach ($pager-&#62;getResults() as $post): ?&#62;&#60;div&#62; &#60;?php if($post-&#62;getTitle()) { echo link_to($post-&#62;getTitle(), &#8216;news/fullstory?expand=&#8217;.$post-&#62;getId(),&#8217;class=&#8221;mhead&#8221;&#8216;); } ?&#62; &#60;?php if($post-&#62;getDn2()!=&#8221;) { echo image_tag($post-&#62;getDn2()); } ?&#62; &#60;?php $content=$post-&#62;getContent(); $stripcontent=substr($content,&#8221; &#8220;,700); echo $stripcontent; ?&#62; &#60;div style=&#8221;display:block;&#8221; &#62; [...]]]></description>
		<wfw:commentRss>http://www.techaspirant.com/symfony-1-4-doctrine-pagination/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Symfony 1.2  File Upload</title>
		<link>http://www.techaspirant.com/symfony-1-2-file-upload/</link>
		<comments>http://www.techaspirant.com/symfony-1-2-file-upload/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 10:20:34 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[symfony file upload]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=283</guid>
		<description><![CDATA[class mymoduleActions extends sfActions { public function executeUpload($request) { if ($request-&#62;hasFiles()) { foreach ($request-&#62;getFileNames() as $uploadedFile) { $fileName = $request-&#62;getFileName($uploadedFile); $fileSize = $request-&#62;getFileSize($uploadedFile); $fileType = $request-&#62;getFileType($uploadedFile); $fileError = $request-&#62;hasFileError($uploadedFile); $uploadDir = sfConfig::get('sf_upload_dir'); $request-&#62;moveFile($uploadedFile, $uploadDir.'/'.$fileName); } } }]]></description>
		<wfw:commentRss>http://www.techaspirant.com/symfony-1-2-file-upload/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Symfony &#8211; The PHP Frame work :: Based on MVC architecture !!</title>
		<link>http://www.techaspirant.com/symfony-the-php-frame-work-based-on-mvc-architecture/</link>
		<comments>http://www.techaspirant.com/symfony-the-php-frame-work-based-on-mvc-architecture/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 10:12:55 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[framework]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[Symfony]]></category>

		<guid isPermaLink="false">http://arunrajr.com/blog/archives/16</guid>
		<description><![CDATA[Symfony is a full-stack framework, a library of cohesive classes written in PHP5 . Symfony provides an architecture, components and tools for developers to build complex web applications faster. Symfony help you to develop your applications @ early, low cost, secure scalable and maintain them easily . Symfony Features Symfony was built in order to fulfill [...]]]></description>
		<wfw:commentRss>http://www.techaspirant.com/symfony-the-php-frame-work-based-on-mvc-architecture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

