<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-27791762</id><updated>2011-11-28T09:46:56.126+05:30</updated><category term='XSLT Transformation in PHP 5'/><category term='xml namespaces'/><title type='text'>web2.0</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://prabuks.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://prabuks.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>prabu</name><uri>http://www.blogger.com/profile/02503624408262401878</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-27791762.post-6696533493306388695</id><published>2007-04-07T14:11:00.000+05:30</published><updated>2007-04-07T14:17:58.502+05:30</updated><title type='text'></title><content type='html'>Difference between &amp;lt;div&amp;gt; and &amp;lt;span&amp;gt;&lt;br /&gt;&lt;br /&gt;1.The &lt;span&gt; tag cant do any formatting of it's own.&lt;br /&gt;2.It simply tells the browser which styles are applied whatever in the span tag.&lt;br /&gt;3.It cant define any logical division of the document.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div&amp;gt;&lt;br /&gt;&lt;br /&gt;1.It includes the paragraph break.&lt;br /&gt;2.it defines the logical division of the document.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/27791762-6696533493306388695?l=prabuks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://prabuks.blogspot.com/feeds/6696533493306388695/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=27791762&amp;postID=6696533493306388695' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/6696533493306388695'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/6696533493306388695'/><link rel='alternate' type='text/html' href='http://prabuks.blogspot.com/2007/04/difference-between-and-1.html' title=''/><author><name>prabu</name><uri>http://www.blogger.com/profile/02503624408262401878</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-27791762.post-4594712915741265987</id><published>2007-04-07T10:19:00.000+05:30</published><updated>2007-04-07T10:44:41.784+05:30</updated><title type='text'></title><content type='html'>AJAX stands for Asynchronous JavaScript And XML.&lt;br /&gt;&lt;br /&gt;This technology is used to reduce the bandwidth  and time of the user.&lt;br /&gt;&lt;br /&gt;AjAX is combination of javascript and HTTP Request.In this technique the http request is created as xml (XMLHttpRequest).&lt;br /&gt;&lt;br /&gt;if you want to use the technology called ajax,if you can create the XMLHttpRequest.&lt;br /&gt;The below code is used to create the XMLHttpRequest.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;function createXMLReq()&lt;br /&gt;{&lt;br /&gt;    var XMLReq;&lt;br /&gt;    if(window.XMLHttpRequest)&lt;br /&gt;    {&lt;br /&gt;            try{&lt;br /&gt;                        XMLReq = new XMLHttpRequest();&lt;br /&gt;                    }&lt;br /&gt;            catch(e){&lt;br /&gt;                        &lt;br /&gt;                        XMLReq = false;&lt;br /&gt;                }               &lt;br /&gt;    }&lt;br /&gt;    elseif(window.ActveXobject)&lt;/span&gt;&lt;span style="color: rgb(102, 0, 0);"&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;            try{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;                        XMLReq = new ActiveXobject("micrfosoft.XMLHTTP");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;                    }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;            catch(e)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;            {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;                    XMLReq = false;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;            }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    return XMLReq;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;The above code is used to create the XMLHttpRequest.&lt;br /&gt;&lt;br /&gt;using the open keyword you can call any serverside file with querystring.&lt;br /&gt;&lt;br /&gt;For Example:&lt;br /&gt;&lt;br /&gt;                &lt;span style="color: rgb(51, 51, 255);"&gt;Req = &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;createXMLReq();&lt;br /&gt;&lt;br /&gt;                Req.open('method','url')      - [method = Get/post][URL = Requested URL]&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;br /&gt;You can check the state of the Request by using the following code.&lt;br /&gt;&lt;br /&gt;                &lt;span style="color: rgb(51, 51, 255);"&gt;Req.onreadystatchange&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;You can get the response text by using &lt;span style="color: rgb(51, 51, 255);"&gt;responseText&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;There are several states are there.&lt;br /&gt;&lt;br /&gt;                     0 - uninitialized.&lt;br /&gt;                     1  - Loading&lt;br /&gt;                     2 - loaded.&lt;br /&gt;                     3 - Interactive.&lt;br /&gt;                     4 - complete.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;    &lt;/span&gt;&lt;span style="color: rgb(102, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/27791762-4594712915741265987?l=prabuks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://prabuks.blogspot.com/feeds/4594712915741265987/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=27791762&amp;postID=4594712915741265987' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/4594712915741265987'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/4594712915741265987'/><link rel='alternate' type='text/html' href='http://prabuks.blogspot.com/2007/04/ajax-stands-for-asynchronous-javascript.html' title=''/><author><name>prabu</name><uri>http://www.blogger.com/profile/02503624408262401878</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-27791762.post-8996622314111900225</id><published>2007-04-07T10:01:00.001+05:30</published><updated>2007-04-07T10:16:47.688+05:30</updated><title type='text'></title><content type='html'>&lt;span style="font-weight: bold;"&gt;DOM (Document Object Model) in PHP5&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;                In php5 DOM is an default extension.&lt;br /&gt;It is used to create the xml/xhtml file in php.You can create the DOM object using the follwoing line.&lt;br /&gt;           $doc = new &lt;code class="tutorialExample"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 187);"&gt;DomDocument&lt;/span&gt;&lt;span style="color: rgb(0, 119, 0);"&gt;();&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;By using the above object you can easily create the element by using the below code&lt;br /&gt;&lt;br /&gt;   $newEle = $doc-&gt;createElement('elementName');   [elementName - Variable]&lt;br /&gt;&lt;br /&gt;After creating the element you can append the element as a child to other element.&lt;br /&gt;&lt;br /&gt;   $doc-&gt;appendChild($newEle);&lt;br /&gt;&lt;br /&gt;The above code append the element as a child in the root.If you want to append the element as a child in particular element.&lt;br /&gt;   For example:&lt;br /&gt;&lt;br /&gt;               $dom = new &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;code class="tutorialExample"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;DomDocument&lt;/span&gt;&lt;span style="color: rgb(0, 119, 0);"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;();&lt;/span&gt;&lt;br /&gt;              &lt;span style="color: rgb(0, 0, 0);"&gt;$ele = $dom&lt;span style="color: rgb(51, 51, 255);"&gt;-&gt;createElement&lt;span style="color: rgb(0, 0, 0);"&gt;(&lt;/span&gt;'&lt;/span&gt;html');&lt;br /&gt;$chdEle = $dom-&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;createElement&lt;/span&gt;('body');&lt;br /&gt;$appEle = $ele-&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;appendChild&lt;/span&gt;($chdEle);&lt;br /&gt;&lt;br /&gt;$dom-&gt;appendChild($ele);&lt;br /&gt;&lt;br /&gt;In the above code First the &amp;lt;html&amp;gt; and &amp;lt;body&amp;gt; elements are created,After that the body element is added as a child in html element.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            &lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/27791762-8996622314111900225?l=prabuks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://prabuks.blogspot.com/feeds/8996622314111900225/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=27791762&amp;postID=8996622314111900225' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/8996622314111900225'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/8996622314111900225'/><link rel='alternate' type='text/html' href='http://prabuks.blogspot.com/2007/04/dom-document-object-model-in-php5-in_07.html' title=''/><author><name>prabu</name><uri>http://www.blogger.com/profile/02503624408262401878</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-27791762.post-8322821362473415190</id><published>2007-03-02T10:29:00.000+05:30</published><updated>2007-03-02T10:38:15.629+05:30</updated><title type='text'></title><content type='html'>&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;Spell Checking&lt;br /&gt;&lt;br /&gt;   &lt;span style="color: rgb(0, 0, 0);"&gt;Spell checking is very easy to integrate in any site.&lt;br /&gt;&lt;br /&gt;We can simply create a spell checker using php and ajax.&lt;br /&gt;&lt;br /&gt;Pspell is the Extension in php, used to check the spelling of the word and also give the suggestions.&lt;br /&gt;&lt;br /&gt;if you want to use pspell,first u can install aspell library in your system&lt;br /&gt;&lt;br /&gt;after installation was completed.copy the pspell.dll and aspell.dll and put it in system32 directory or in the php directory.&lt;br /&gt;After all are finised, add the &lt;/span&gt;&lt;/span&gt;&lt;var class="option"&gt;--with-pspell[=dir] option &lt;/var&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;and  compiling the php.&lt;br /&gt;&lt;br /&gt;Now you can use the pspell functions in your website.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/27791762-8322821362473415190?l=prabuks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://prabuks.blogspot.com/feeds/8322821362473415190/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=27791762&amp;postID=8322821362473415190' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/8322821362473415190'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/8322821362473415190'/><link rel='alternate' type='text/html' href='http://prabuks.blogspot.com/2007/03/spell-checking-spell-checking-is-very.html' title=''/><author><name>prabu</name><uri>http://www.blogger.com/profile/02503624408262401878</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-27791762.post-6690516438536225774</id><published>2007-01-04T15:44:00.000+05:30</published><updated>2007-01-04T16:05:35.854+05:30</updated><title type='text'></title><content type='html'>&lt;span style="font-family: verdana;font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;Serialization and Deserialization.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;serialize is a inbuild method in php .It is used to convert any object in to string.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;Using &lt;/span&gt;&lt;span style="color: rgb(51, 102, 255); font-family: verdana;"&gt;unserialize()&lt;/span&gt;&lt;span style="font-family: verdana;"&gt; conveting the serialized string into its own format.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;For example,&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;    class serializeClass&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;    public $fname;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;    public $lname;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;    public $email;&lt;/span&gt;&lt;br /&gt;   &lt;br /&gt;&lt;span style="font-family: verdana;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;class serializeClass1 extends serializeClass&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;    public $name;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;$myserializeObject = new serializeClass1();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;$myserializeObject-&gt;name = "prabhuname";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;$myserializeObject-&gt;fname = "prabhu";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;$myserializeObject-&gt;lname  = "kalaiselvam";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;$myserializeObject-&gt;email = "prabu@gmail.com";&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;if you want to convert the object "$myserializeObject"  into string &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;,Using serialize () method  u can convert it .&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255); font-family: verdana;"&gt;serialize&lt;/span&gt;&lt;span style="font-weight: bold; font-family: verdana;"&gt;($myserializeObject)&lt;/span&gt;&lt;span style="font-family: verdana;"&gt;. the class object was converted in to string.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana;"&gt;if u want to de serialize you can use &lt;/span&gt;&lt;span style="color: rgb(51, 102, 255); font-family: verdana;"&gt;unserialize&lt;/span&gt;&lt;span style="font-weight: bold; font-family: verdana;"&gt;($myserializeObject)&lt;/span&gt;&lt;span style="font-family: verdana;"&gt;.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/27791762-6690516438536225774?l=prabuks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://prabuks.blogspot.com/feeds/6690516438536225774/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=27791762&amp;postID=6690516438536225774' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/6690516438536225774'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/6690516438536225774'/><link rel='alternate' type='text/html' href='http://prabuks.blogspot.com/2007/01/serialization-and-deserialization.html' title=''/><author><name>prabu</name><uri>http://www.blogger.com/profile/02503624408262401878</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-27791762.post-2684502109360392868</id><published>2007-01-02T18:12:00.000+05:30</published><updated>2007-01-02T18:14:02.427+05:30</updated><title type='text'></title><content type='html'>select user_id, user_fname, user_lname&lt;br /&gt;into outfile 'prabu.csv'&lt;br /&gt;fields terminated by ',' optionally enclosed by '"'&lt;br /&gt;lines terminated by '\n'&lt;br /&gt;from cwf_users&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;this is used to export the data as csv file and saved in&lt;br /&gt;"C:\Program Files\MySQL\MySQL Server 5.0\data\prabu.csv" if you are installed mysql in c directory&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/27791762-2684502109360392868?l=prabuks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://prabuks.blogspot.com/feeds/2684502109360392868/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=27791762&amp;postID=2684502109360392868' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/2684502109360392868'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/2684502109360392868'/><link rel='alternate' type='text/html' href='http://prabuks.blogspot.com/2007/01/select-userid-userfname-userlname-into.html' title=''/><author><name>prabu</name><uri>http://www.blogger.com/profile/02503624408262401878</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-27791762.post-3768606772201443236</id><published>2007-01-02T17:43:00.000+05:30</published><updated>2007-01-02T17:49:29.303+05:30</updated><title type='text'></title><content type='html'>If you want to change the file extension of your php file&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;code&gt;AddType application/x-httpd-php &lt;span style="font-weight: bold;"&gt;".new extension"&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;for example your site name is thinkpixels.net.If you want to use "tp" as your file extension,just add this line in your htaccess file&lt;br /&gt;&lt;pre&gt;&lt;code&gt;AddType application/x-httpd-php &lt;span style="font-weight: bold;"&gt;".tp" &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;try this.&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/27791762-3768606772201443236?l=prabuks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://prabuks.blogspot.com/feeds/3768606772201443236/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=27791762&amp;postID=3768606772201443236' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/3768606772201443236'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/3768606772201443236'/><link rel='alternate' type='text/html' href='http://prabuks.blogspot.com/2007/01/if-you-want-to-change-file-extension-of.html' title=''/><author><name>prabu</name><uri>http://www.blogger.com/profile/02503624408262401878</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-27791762.post-1430217316583555510</id><published>2006-12-30T19:05:00.000+05:30</published><updated>2006-12-30T19:53:38.021+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='XSLT Transformation in PHP 5'/><title type='text'></title><content type='html'>PHP 5 supports the xslt transformations. if you want to use this features ,you can add the xsl extension in php.ini file.&lt;br /&gt;&lt;br /&gt;This extension is used for xsltprocessor. After enabling the extension,you can restart the apache server.then only the changes will be affected.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/27791762-1430217316583555510?l=prabuks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://prabuks.blogspot.com/feeds/1430217316583555510/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=27791762&amp;postID=1430217316583555510' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/1430217316583555510'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/1430217316583555510'/><link rel='alternate' type='text/html' href='http://prabuks.blogspot.com/2006/12/php-5-supports-xslt-transformations.html' title=''/><author><name>prabu</name><uri>http://www.blogger.com/profile/02503624408262401878</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-27791762.post-5840617883640089339</id><published>2006-12-30T18:55:00.000+05:30</published><updated>2006-12-30T19:01:21.819+05:30</updated><title type='text'></title><content type='html'>&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;XPATH:&lt;/p&gt;    &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;span style=""&gt;               &lt;/span&gt;Is a language for defining&lt;span style=""&gt;  &lt;/span&gt;parts&lt;span style=""&gt;  &lt;/span&gt;of an xml.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;xpath uses the following steps to select the node of the xml.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;  &lt;/p&gt;&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;                                1.elements.&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;span style=""&gt;                                &lt;/span&gt;2.text&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;span style=""&gt;                                &lt;/span&gt;3.attributes&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;span style=""&gt;                                &lt;/span&gt;4. name spaces&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;span style=""&gt;                                &lt;/span&gt;5.processing Instructions&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;span style=""&gt;                                &lt;/span&gt;6.comments&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;span style=""&gt;                                &lt;/span&gt;7.document root&lt;/p&gt;&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;br /&gt;&lt;/p&gt;some wildcard are there in XPATH.    &lt;br /&gt;&lt;br /&gt;    * -  is used to retrive all the elements in the xml.&lt;br /&gt;@* -  is used to retrive all attribute nodes in the xml.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/27791762-5840617883640089339?l=prabuks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://prabuks.blogspot.com/feeds/5840617883640089339/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=27791762&amp;postID=5840617883640089339' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/5840617883640089339'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/5840617883640089339'/><link rel='alternate' type='text/html' href='http://prabuks.blogspot.com/2006/12/xpath-is-language-for-defining-parts-of.html' title=''/><author><name>prabu</name><uri>http://www.blogger.com/profile/02503624408262401878</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-27791762.post-2363252742001233602</id><published>2006-12-30T18:52:00.000+05:30</published><updated>2006-12-30T18:55:20.021+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='xml namespaces'/><title type='text'></title><content type='html'>&lt;p class="MsoNormal"&gt;XML stands for extensible Markup Language&lt;/p&gt;  &lt;p class="MsoNormal"&gt;XML is a markup language like HTML.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;It won’t have any predefined tags. You must define the tags.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;XML was designed to describe data and to focus on what data is.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;If you want to ignore some thing from the parser, you can use CDATA.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;Namespaces are used to avoid the Name conflicts in XML.&lt;/p&gt;&lt;br /&gt;&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;span style=""&gt;                                &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/27791762-2363252742001233602?l=prabuks.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://prabuks.blogspot.com/feeds/2363252742001233602/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=27791762&amp;postID=2363252742001233602' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/2363252742001233602'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/27791762/posts/default/2363252742001233602'/><link rel='alternate' type='text/html' href='http://prabuks.blogspot.com/2006/12/xml-stands-for-extensible-markup.html' title=''/><author><name>prabu</name><uri>http://www.blogger.com/profile/02503624408262401878</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
