<?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 - The ultimate technology Blog</title>
	<atom:link href="http://www.techaspirant.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techaspirant.com</link>
	<description>My thoughts and finding in brief...arunrajr</description>
	<lastBuildDate>Wed, 11 Nov 2009 15:24:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add a page that you&#8217;d like to see the next time you search for : Google add url</title>
		<link>http://www.techaspirant.com/add-a-page-that-youd-like-to-see-the-next-time-you-search-for-google-adds/</link>
		<comments>http://www.techaspirant.com/add-a-page-that-youd-like-to-see-the-next-time-you-search-for-google-adds/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 15:20:10 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[bulk sms]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[optima]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[orisys]]></category>
		<category><![CDATA[orisysindia]]></category>
		<category><![CDATA[results]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search engine marketing]]></category>
		<category><![CDATA[spurr]]></category>
		<category><![CDATA[spurrsms]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=315</guid>
		<description><![CDATA[I noticed a new feature from google while doing Search Engine Optimization. You can able to results to google search results.

Here we can inlcude our search results to google. I think this move is an alternative to twitter search. What I meant is twitter updates are done by a manual invention, But google results are [...]]]></description>
		<wfw:commentRss>http://www.techaspirant.com/add-a-page-that-youd-like-to-see-the-next-time-you-search-for-google-adds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP MYSQL Tips and Tricks</title>
		<link>http://www.techaspirant.com/php-mysql-tips-and-tricks/</link>
		<comments>http://www.techaspirant.com/php-mysql-tips-and-tricks/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 17:49:54 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[and tricks]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=305</guid>
		<description><![CDATA[This is a small article containing tricks and tips I aquired by reading PHP 6 Text Book.
I was used isset() function to check whether these arguements are set or not. And also I need to check this is empty or not.
Here is another function to check both of this requirement at single line.
empty()
It checks if a [...]]]></description>
		<wfw:commentRss>http://www.techaspirant.com/php-mysql-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 6 upgrade : Advantages covered</title>
		<link>http://www.techaspirant.com/php-6-upgrade/</link>
		<comments>http://www.techaspirant.com/php-6-upgrade/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 10:42:28 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=285</guid>
		<description><![CDATA[
PHP Personal Home Page now it is Hypertext Pre Processor.
Version : 6 (PHP 6)
Advantages,

Addition of improved MySql Extension
PHP 6 support Unicode, so that PHP 6 can handle all languages in the world. I faced lot of problems with &#8216;Malayalam&#8217; font integration.
PHP 6 cleans up a lot of garbbages that was left in php 5
The two [...]]]></description>
		<wfw:commentRss>http://www.techaspirant.com/php-6-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Resize Simple class</title>
		<link>http://www.techaspirant.com/image-resize-simple-class/</link>
		<comments>http://www.techaspirant.com/image-resize-simple-class/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 04:36:53 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[imagejpeg]]></category>
		<category><![CDATA[resize]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=293</guid>
		<description><![CDATA[Here is a sample class file for image resize.
imageResize.class
Download the File  save it in web root and add .php extension to the file  .
How to use ?
&#60;?php
require_once(&#8216;imageResize.class.php&#8217;); // Path to File
imagejpeg(imageResize::Resize($fileSavePath,$width,$height),$newFileName);
?&#62;
$fileSavePath should be the pathname of source file. Say &#8220;uploads/arun.jpg&#8221;.
$newFileName this should be the source File name with path.  Say &#8220;uploads/thumb/arun.jpg&#8221;.
Any Doubt ?
]]></description>
		<wfw:commentRss>http://www.techaspirant.com/image-resize-simple-class/feed/</wfw:commentRss>
		<slash:comments>0</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[PHP]]></category>
		<category><![CDATA[framework]]></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  = [...]]]></description>
		<wfw:commentRss>http://www.techaspirant.com/symfony-1-2-file-upload/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Unexpected Error in new PHP 5.3</title>
		<link>http://www.techaspirant.com/unexpected-error-in-new-php-5-3/</link>
		<comments>http://www.techaspirant.com/unexpected-error-in-new-php-5-3/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 06:35:17 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Troubleshoot]]></category>
		<category><![CDATA[php 5.3]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=280</guid>
		<description><![CDATA[Syntax Error , Unexpected &#8216;]&#8217; in C:\xampp\php\browscap\browscap.ini on line 297.
]]></description>
		<wfw:commentRss>http://www.techaspirant.com/unexpected-error-in-new-php-5-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is PHP and its advantages and disadvantages..</title>
		<link>http://www.techaspirant.com/what-is-php-and-its-advantages-and-disadvantages/</link>
		<comments>http://www.techaspirant.com/what-is-php-and-its-advantages-and-disadvantages/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 02:38:33 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=259</guid>
		<description><![CDATA[Hypertext     Preprocessor :: PHP some time  I used to call Personal Home Page
PHP is an open source server side scripting language that mainly used for developing web applications and web services.
The PHP is very simple for a beginner, but offers many advanced features for     a professional script [...]]]></description>
		<wfw:commentRss>http://www.techaspirant.com/what-is-php-and-its-advantages-and-disadvantages/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Comparison between various programming languages</title>
		<link>http://www.techaspirant.com/comparison-between-various-programming-languages/</link>
		<comments>http://www.techaspirant.com/comparison-between-various-programming-languages/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 02:23:56 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=251</guid>
		<description><![CDATA[Today onwards I am willing to write series of articles about various programming languages. As a programmer we should compare all the programming languages, study its advantage and disadvantages . By these we can consult a correct platform for our clients and we can plug in this in appropriate situation. So advantages and disadvantages over [...]]]></description>
		<wfw:commentRss>http://www.techaspirant.com/comparison-between-various-programming-languages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing and configuring Asterisk</title>
		<link>http://www.techaspirant.com/installing-and-configuring-asteris/</link>
		<comments>http://www.techaspirant.com/installing-and-configuring-asteris/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 04:40:35 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[asterisk]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[develop asterisk applications]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[run]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=242</guid>
		<description><![CDATA[How to install Asterisk ?

How to run Asterisk ?


This youtube video help you to install, configure and run your astersisk the open source PBX.
]]></description>
		<wfw:commentRss>http://www.techaspirant.com/installing-and-configuring-asteris/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Asterisk Callme Architecture with PHP AGI</title>
		<link>http://www.techaspirant.com/asterisk-callme-architecture/</link>
		<comments>http://www.techaspirant.com/asterisk-callme-architecture/#comments</comments>
		<pubDate>Tue, 12 May 2009 04:17:54 +0000</pubDate>
		<dc:creator>R Arun Raj</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[callme architecture]]></category>

		<guid isPermaLink="false">http://www.techaspirant.com/?p=240</guid>
		<description><![CDATA[
Extensions Configuration
extensions.conf
[callme]
exten =&#62; s,1,AGI(callme.php&#124;${CNUM})
CNUM is the variable passed to callme AGI Script
Callme.php Agi Script 
#!/usr/bin/php
/**
* Author Arun Raj R
* @package phpAGI_for Call me
* @version 1.0
*/
set_time_limit(30);
require_once(&#8220;phpagi/phpagi.php&#8221;);
$agi = new AGI();
$agi-&#62;answer();
$result=$agi-&#62;stream_file(&#8220;welcome_to_call_me&#8221;);
$cid = $argv[1];
$agi-&#62;exec(&#8220;Dial Zap/g0/&#8221;.$cid, null);
?&#62;
PHP File to run callme service request
&#60;?php
require_once(&#8220;/var/lib/
asterisk/agi-bin/worker/phpagi/phpagi-asmanager.php&#8221;);
$number1=$_REQUEST['num1'];
$number2 = $_REQUEST[num2'];
$asm = new AGI_AsteriskManager();
$asm-&#62;connect(&#8220;localhost&#8221;, &#8220;username&#8221;, &#8220;password&#8221;);
$number = &#8220;Zap/g0/&#8221;.$number1;
$asm-&#62;send_request(&#8216;Originate&#8217;, array(&#8216;Channel&#8217; =&#62; &#8220;$number&#8221;, &#8216;Context&#8217; =&#62; &#8220;callme&#8221;, &#8216;Priority&#8217; =&#62; [...]]]></description>
		<wfw:commentRss>http://www.techaspirant.com/asterisk-callme-architecture/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
