<?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>Amphee Web Tech Pvt. Ltd. &#187; javascript</title>
	<atom:link href="http://blog.amphee.com/index.php/category/web-development/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.amphee.com</link>
	<description></description>
	<lastBuildDate>Wed, 04 May 2011 05:34:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:3px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 1 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-0687753067406098"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "A6C9E2";
		google_color_link = "FF3019"; google_color_bg = "FFFFFF";
		google_color_text = "000000"; google_color_url = "7EB544";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>How CSS and JavaScript Are Different</title>
		<link>http://blog.amphee.com/index.php/2010/11/15/how-css-and-javascript-are-different/</link>
		<comments>http://blog.amphee.com/index.php/2010/11/15/how-css-and-javascript-are-different/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 06:06:47 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[css blog]]></category>
		<category><![CDATA[css javascript]]></category>
		<category><![CDATA[difference of css and javascript]]></category>

		<guid isPermaLink="false">http://blog.amphee.com/?p=315</guid>
		<description><![CDATA[So, what&#8217;s this important difference?
In CSS, style rules are automatically applied to any element that matches the selectors, no matter when those elements are added to the document (DOM).
In JavaScript, event handlers that are registered for elements in the document apply only to those elements that are part of the DOM at the time the [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>So, what&#8217;s this important difference?</p>
<p><strong>In <abbr title="Cascading Style Sheets">CSS</abbr></strong>, style rules are automatically applied to any element that matches the selectors, <em>no matter when those elements are added to the document (DOM)</em>.</p>
<p><strong>In JavaScript</strong>, event handlers that are registered for elements in the document apply <em>only to those elements that are part of the DOM at the time the event is attached</em>.  If we add similar elements to the DOM at a later time, whether through  simple DOM manipulation or ajax, CSS will give those elements the same  appearance, but JavaScript will not automatically make them act the same  way.<br />
<button class="alert">Alert!</button></p>
<p>For example, let&#8217;s say we have &#8220;<code>&lt;button&gt;Alert!&lt;/button&gt;</code>&#8221;  in our document, and we want to attach a click handler to it that  generates an alert message. In jQuery, we might do so with the following  code:</p>
<div><a href="http://www.learningjquery.com/2008/03/working-with-events-part-1#">PLAIN TEXT</a></div>
<div>
<p>JavaScript:</p>
<div id="javascript-1">
<div>
<ol>
<li>
<div>$(document).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=ready">ready</a>(function() {</div>
</li>
<li>
<div>$(&#8216;button.alert&#8217;).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=click">click</a>(function() {</div>
</li>
<li>
<div>alert(&#8216;this is an alert message&#8217;);</div>
</li>
<li>
<div>});</div>
</li>
<li>
<div>});</div>
</li>
</ol>
</div>
</div>
</div>
<p>Here we are registering the click handler for the button with a class  of &#8220;alert&#8221; as soon as the DOM has loaded. So, the button is there, and  we have a click function bound to it. If we add a second <code>&lt;button&gt;</code> later on, however, it will know nothing about that click handler. The  click event had been dealt with before this second button existed. So,  the second button will not generate an alert.</p>
<p>Let&#8217;s test what we&#8217;ve just discussed. I&#8217;ve added a script with the  above three lines of jQuery code so that the following button will  produce an alert message when clicked. Try it:</p>
<p><button class="alert">Alert!</button></p>
<h4>Events Don&#8217;t Work with Added Elements</h4>
<p>Now, let&#8217;s create a new button (if we don&#8217;t already have a second one) using jQuery code like this:</p>
<div><a href="http://www.learningjquery.com/2008/03/working-with-events-part-1#">PLAIN TEXT</a></div>
<div>
<p>JavaScript:</p>
<div id="javascript-2">
<div>
<ol>
<li>
<div>$(&#8216;#create-button&#8217;).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=click">click</a>(function() {</div>
</li>
<li>
<div>if ( $(&#8216;button.alert&#8217;).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=length">length</a> &lt;2) {</div>
</li>
<li>
<div>$(&#8216;&lt;button&gt;Not another alert&#8217;).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=insertAfter">insertAfter</a>(this);</div>
</li>
<li>
<div>}</div>
</li>
<li>
<div>return false;</div>
</li>
<li>
<div>});</div>
</li>
</ol>
</div>
</div>
</div>
<p><a id="create-button" href="http://www.learningjquery.com/2008/03/working-with-events-part-1#">create the button</a></p>
<p>Have you clicked the link to create the second button? Great. Now click that button. It does nothing. Just as expected.</p>
<h4>CSS Continues to &#8220;Work&#8221; with Newly Created Elements</h4>
<p>Now let&#8217;s take a look at another example. In this one, we have three list items—two plain items and one with a class of special:</p>
<div><a href="http://www.learningjquery.com/2008/03/working-with-events-part-1#">PLAIN TEXT</a></div>
<div>
<p>HTML:</p>
<div id="html-3">
<div>
<ol>
<li>
<div>&lt;ul id=&#8221;list1&#8243; class=&#8221;eventlist&#8221;&gt;</div>
</li>
<li>
<div>&lt;li&gt;plain&lt;/li&gt;</div>
</li>
<li>
<div>&lt;li class=&#8221;special&#8221;&gt;special &lt;button&gt;I am special&lt;/button&gt;&lt;/li&gt;</div>
</li>
<li>
<div>&lt;li&gt;plain&lt;/li&gt;</div>
</li>
<li>
<div>&lt;/ul&gt;</div>
</li>
</ol>
</div>
</div>
</div>
<p>Press the &#8220;I am special&#8221; button to create a <em>new</em> list item with a class of &#8220;special&#8221;:</p>
<ul id="list1">
<li>plain</li>
<li>special <button>I am special</button></li>
<li>plain</li>
</ul>
<p>Notice that, like the first special li, the new one has the yellow  background. The CSS has come through for us. But press the newly created  &#8220;I am new&#8221; button and, just as with the second alert above, nothing  happens. The jQuery code we&#8217;re using to add the new item says that upon  clicking a button inside a list item with a class of &#8220;special&#8221; (which  itself is inside an element with id of &#8220;list1&#8243;) a new list item with  class=&#8221;special&#8221; should be inserted after the list item in which the  button was clicked:</p>
<div><a href="http://www.learningjquery.com/2008/03/working-with-events-part-1#">PLAIN TEXT</a></div>
<div>
<p>JavaScript:</p>
<div id="javascript-4">
<div>
<ol>
<li>
<div>$(document).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=ready">ready</a>(function() {</div>
</li>
<li>
<div>$(&#8216;#list1 li.special button&#8217;).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=click">click</a>(function() {</div>
</li>
<li>
<div>var $newLi = $(&#8216;&lt;li&gt;special and new &lt;button&gt;I am new&lt;/button&gt;&lt;/li&gt;&#8217;);</div>
</li>
<li>
<div>$(this).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=parent">parent</a>().<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=after">after</a>($newLi);</div>
</li>
<li>
<div>});</div>
</li>
<li>
<div>});</div>
</li>
</ol>
</div>
</div>
</div>
<p>So, how can we get the events to carry over to the new elements? Two common approaches are <strong>event delegation</strong> and <strong>&#8220;re-binding&#8221; event handlers</strong>. In this entry, we&#8217;ll examine event delegation; in part 2, we&#8217;ll explore ways to re-bind.</p>
<h4>Event Delegation: Getting Events to Embrace New Elements</h4>
<p>The general idea of event delegation is to bind the event handler to a  containing element and then have an action take place based on which  specific element within that containing element is targeted. Let&#8217;s say  we have another unordered list: <code>&lt;ul id="list2"&gt; ... &lt;/ul&gt;</code>. Instead of attaching the <code>.click()</code> method to a button — <code>$('#list2 li.special button').click(...)</code> — we can attach it to the entire surrounding <code>&lt;ul&gt;</code>. Through the magic of &#8220;<a href="http://www.quirksmode.org/js/events_order.html">bubbling</a>,&#8221;  any click on the button is also a click on the button&#8217;s surrounding  list item, the list as a whole, the containing div, and all the way up  to the window object. Since the <code>&lt;ul&gt;</code> that gets clicked is the same one each time (we&#8217;re only creating items <em>within</em> the <code>&lt;ul&gt;</code>), the same thing will happen when clicking on all of the buttons, regardless of when they were created.</p>
<p>When we use event delegation, we need to pass in the &#8220;event&#8221; argument. So, in our case, instead of <code>.click()</code>, we&#8217;ll have <code>.click(event)</code>. We don&#8217;t have to name this argument <code>event</code>. We can call it <code>e</code> or <code>evt</code> or <code>gummy</code> or whatever we want. I just like to use labels that are as obvious as  possible because I have a hard time keeping track of things. Here is  what we have so far:</p>
<div><a href="http://www.learningjquery.com/2008/03/working-with-events-part-1#">PLAIN TEXT</a></div>
<div>
<p>JavaScript:</p>
<div id="javascript-5">
<div>
<ol>
<li>
<div>$(document).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=ready">ready</a>(function() {</div>
</li>
<li>
<div>$(&#8216;#list2&#8242;).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=click">click</a>(function(event) {</div>
</li>
<li>
<div>var $newLi = $(&#8216;&lt;li&gt;special and new &lt;button&gt;I am new&lt;/button&gt;&lt;/li&gt;&#8217;);</div>
</li>
<li>
<div>});</div>
</li>
<li>
<div>});</div>
</li>
</ol>
</div>
</div>
</div>
<p>So far, the code is very similar to our first attempt, except for the  selector we&#8217;re starting with (#list2) and the addition of the event  argument. Now we need to determine whether what is being clicked inside  the <code>&lt;ul&gt;</code> is a &#8220;special&#8221; button or not. If it is, we can add a new <code>&lt;li&gt;</code>. We check the clicked element by using the &#8220;target&#8221; property of the event argument:</p>
<div><a href="http://www.learningjquery.com/2008/03/working-with-events-part-1#">PLAIN TEXT</a></div>
<div>
<p>JavaScript:</p>
<div id="javascript-6">
<div>
<ol>
<li>
<div>$(document).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=ready">ready</a>(function() {</div>
</li>
<li>
<div>$(&#8216;#list2&#8242;).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=click">click</a>(function(event) {</div>
</li>
<li>
<div>var $newLi = $(&#8216;&lt;li&gt;special and new &lt;button&gt;I am new&lt;/button&gt;&lt;/li&gt;&#8217;);</div>
</li>
<li>
<div>var $tgt = $(event.target);</div>
</li>
<li>
<div>if ($tgt.is(&#8216;button&#8217;)) {</div>
</li>
<li>
<div>$tgt.<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=parent">parent</a>().<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=after">after</a>($newLi);</div>
</li>
<li>
<div>}</div>
</li>
<li>
<div>// next 2 lines show that you&#8217;ve clicked on the ul</div>
</li>
<li>
<div>var bgc = $(this).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=css">css</a>(&#8216;backgroundColor&#8217;);</div>
</li>
<li>
<div>$(this).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=css">css</a>({backgroundColor: bgc == &#8216;#ffcccc&#8217; || bgc == &#8216;rgb(255, 204, 204)&#8217; ? &#8216;#ccccff&#8217; : &#8216;#ffcccc&#8217;});</div>
</li>
<li>
<div>});</div>
</li>
<li>
<div>});</div>
</li>
</ol>
</div>
</div>
</div>
<p>Line 4 above puts the target element in a jQuery wrapper and stores  it in the $tgt variable. Line 5 checks whether the click&#8217;s target is a  button. If it is, the new list item is inserted after the parent of the  clicked button. Let&#8217;s try it:</p>
<ul id="list2">
<li>plain</li>
<li>special <button>I am special</button></li>
<li>plain</li>
</ul>
<p>I put an additional two lines at the end to demonstrate that a click on one of the buttons is still considered a click on the <code>&lt;ul&gt;</code> You&#8217;ll see that clicking anywhere within the <code>&lt;ul&gt;</code> toggles its background between pink and blue.</p>
<p>It&#8217;s probably worth noting that jQuery makes working with the event  argument cross-browser friendly. If you do this sort of thing with plain  JavaScript and DOM nodes, you&#8217;d have to do something like this:</p>
<pre><code>var list2 = document.getElementById('list2');
list2.onclick = function(e) {
  var e = e || window.event;
  var tgt = e.target || e.srcElement;
  if (tgt.nodeName.toLowerCase() == 'button') {
    // do something
  }
};</code></pre>
<p>As you can see, it&#8217;s a bit of a hassle.</p>
<h4>Another Huge Benefit of Event Delegation</h4>
<p>Event delegation is also a great way to avoid crippling the user&#8217;s  browser when you&#8217;re working with a huge document. For example, if you  have a table with thousands of cells, and you want something to happen  when the user clicks on one, you won&#8217;t want to attach a click handler to  every single one of them (believe me, it can get ugly). Instead, you  can attach the click handler to a single table element and use <code>event.target</code> to pinpoint the cell that is being clicked:</p>
<div><a href="http://www.learningjquery.com/2008/03/working-with-events-part-1#">PLAIN TEXT</a></div>
<div>
<p>JavaScript:</p>
<div id="javascript-7">
<div>
<ol>
<li>
<div>$(document).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=ready">ready</a>(function() {</div>
</li>
<li>
<div>$(&#8216;table&#8217;).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=click">click</a>(function(event) {</div>
</li>
<li>
<div>var $thisCell, $tgt = $(event.target);</div>
</li>
<li>
<div>if ($tgt.is(&#8216;td&#8217;)) {</div>
</li>
<li>
<div>$thisCell = $tgt;</div>
</li>
<li>
<div>} else if ($tgt.<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=parents">parents</a>(&#8216;td&#8217;).<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=length">length</a>) {</div>
</li>
<li>
<div>$thisCell = $tgt.<a href="http://www.learningjquery.com/wp-content/themes/ljq/docs.php?fn=parents">parents</a>(&#8216;td:first&#8217;);</div>
</li>
<li>
<div>}</div>
</li>
<li>
<div>// now do something with $thisCell</div>
</li>
<li>
<div>});</div>
</li>
<li>
<div>});</div>
</li>
</ol>
</div>
</div>
</div>
<p>Note that I had to account for the possibility of clicking in a  child/descendant of a table cell, but this seems a small inconvenience  for the great performance increase that event delegation affords.</p>
<p>you can find original post here : <a href="http://www.learningjquery.com/2008/03/working-with-events-part-1#" target="_blank">http://www.learningjquery.com/2008/03/working-with-events-part-1#</a></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2010/11/15/how-css-and-javascript-are-different/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creative Uses for PHP</title>
		<link>http://blog.amphee.com/index.php/2009/05/06/creative-uses-for-php/</link>
		<comments>http://blog.amphee.com/index.php/2009/05/06/creative-uses-for-php/#comments</comments>
		<pubDate>Wed, 06 May 2009 12:13:08 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[php development]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[creative use]]></category>
		<category><![CDATA[online community]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[uses]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=49</guid>
		<description><![CDATA[If you’re a familier with the word ‘PHP’ then here is some useful creative uses for it.
E-Commerce
E-commerce is one of the major uses for PHP. From a small business level to an enterprise level, businesses are always looking to create additional streams of revenue online. If you know how to integrate existing e-commerce solutions or [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><!--[endif]--><span style="font-weight: normal;">If you’re a familier with the word ‘PHP’ then here is some useful creative uses for it.</span></p>
<h3>E-Commerce</h3>
<p>E-commerce is one of the major uses for PHP. From a small business level to an enterprise level, businesses are always looking to create additional streams of revenue online. If you know how to integrate existing e-commerce solutions or build your own from scratch, this gives you a distinct advantage with your clients.</p>
<h3><span style="font-weight: normal;">Beginners</span></h3>
<ul type="disc">
<li class="MsoNormal"><a href="http://www.magentocommerce.com/">Magento</a></li>
<li class="MsoNormal"><a href="http://www.zen-cart.com/">Zen Cart</a></li>
<li class="MsoNormal"><a href="http://www.shopify.com/">Shopify</a></li>
</ul>
<h3><span style="font-weight: normal;">Advanced Coders</span></h3>
<p style="margin-left: 0.5in; text-indent: -0.25in;"><!--[if !supportLists]--><span style="font-family: Symbol;"><span>·<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> </span></span></span><!--[endif]--><a href="http://codeigniter.com/">CodeIgniter</a></p>
<p style="margin-left: 0.5in; text-indent: -0.25in;"><!--[if !supportLists]--><span style="font-family: Symbol;"><span>·<span style="font-family: &quot;Times New Roman&quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"> </span></span></span><!--[endif]--><span> </span><a href="http://cakephp.org/">CakePHP</a>.</p>
<h3>Graphical User Interface</h3>
<p>If PHP is your favorite programming language, then you can use some of these PHP extensions to get you started creating <acronym>GUI</acronym> applications.</p>
<ul type="disc">
<li class="MsoNormal"><a href="http://gtk.php.net/">PHP      GTK</a> &#8211; This extension is a popular open source that implements the GIMP      toolkit</li>
<li class="MsoNormal"><a href="http://www.zzee.com/php-gui/">ZZEE PHP GUI</a> &#8211; A paid solution      that allows you to turn your PHP scripts into Windows applications</li>
</ul>
<h3>Image Processing and Generation</h3>
<p>Using the GD library with PHP, you can do more than just output HTML to the browser! You can output images in different file types including jpeg, png, and gif. This feature of PHP is useful because it allows you to create thumbnail pictures, add watermarks, resize and crop images, and even create a photo gallery!</p>
<h3>Mailing Lists</h3>
<p>You can write your own script to send e-mail newsletters to your client, or use a ready-made script. The PHP online documentation explains <a href="http://us3.php.net/manual/en/function.mail.php">PHP mailing functions</a> in more detail. There are also scripts you can download and install on your website:</p>
<ul type="disc">
<li class="MsoNormal"><a href="http://www.phplist.com/">PHP list</a></li>
</ul>
<p class="MsoNormal">
<h3>Developing Facebook Applications</h3>
<p>You can integrate Facebook with your website using PHP. If you have developed Facebook applications using another language or you would like to get started with PHP, the <a href="http://wiki.developers.facebook.com/index.php/PHP">Facebook developer&#8217;s wiki</a> can help you to get started.</p>
<h3>Create Graphs and Charts</h3>
<p>Do you need visual representations of numbers on your site? PHP can create graphs and charts too! Using <a href="http://pear.veggerby.dk/">Image_Graph</a>, you can create up to fourteen different types of charts including pie charts, bar graphs,.</p>
<h3>Generating PDF Files</h3>
<p>The <acronym>PDF</acronym> format is Adobe&#8217;s proprietary file type for document exchange. Using a library called PDFLib, you can generate PDF files with PHP. This library is already included with PHP5; to access it, you need to uncomment the appropriate lines in your PHP configuration file. An example of why creating PDF files might come in useful is, if you were building an online invoicing application and you wanted to output an HTML-generated invoice in PDF format.</p>
<h3>Parsing XML Files</h3>
<p>PHP allows you to parse <acronym>XML</acronym> files. Parsing XML is an important feature of PHP 5 because not all browsers can output the contents of an XML file; so you can create a parser in PHP to facilitate this process. Using XML is important for RSS feeds, and also for data storage and rendering data on different devices &#8211; for example, cell phones use an implementation of XML called WML (Wireless Markup Language). Working with XML files in PHP is similar to handling the opening, closing, and reading of a file.</p>
<p class="MsoNormal">
<p class="MsoNormal">
<h3>Content Management Systems</h3>
<p>One of the most popular uses of PHP is creating or using Content Management System. A good CMS allows your clients to update their website and add content without any in-depth knowledge of HTML and CSS. You can use one of the widely available free or commercial solutions listed below:</p>
<ul type="disc">
<li class="MsoNormal"><a href="http://www.drupal.org/">Drupal</a></li>
<li class="MsoNormal"><a href="http://www.wordpress.org/">Wordpress</a></li>
<li class="MsoNormal"><a href="http://www.joomla.org/">Joomla</a></li>
</ul>
<h3>Create Dynamic Website Templates</h3>
<p>Using PHP, you can make it easier to add pages and elements to your websites dynamically. You begin by creating the HTML page and splitting it into the header, main content, and footer sections. Add the .php extension to your subsequent pages and use server-side Includes for the header and footer for each new page. You can also have dynamic sidebars and top navigation sections. As a matter of fact, the more &#8220;templated&#8221; your site is, the easier it is to update the content.</p>
<h3>Building an Online Community</h3>
<p>You can build your own PHP-driven online community, or choose from widely available scripts that you can implement into your website. Some popular ones include:</p>
<ul type="disc">
<li class="MsoNormal"><a href="http://www.phpbb.com/">php BB</a></li>
<li class="MsoNormal"><a href="http://www.vbulletin.com/">vBulletin</a></li>
<li class="MsoNormal"><a href="http://punbb.informer.com/">Pun BB</a></li>
</ul>
<p>from kiran vadariya <img src='http://blog.amphee.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/05/06/creative-uses-for-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Charts and analysis for your site</title>
		<link>http://blog.amphee.com/index.php/2009/05/06/charts-and-analysis-for-your-site/</link>
		<comments>http://blog.amphee.com/index.php/2009/05/06/charts-and-analysis-for-your-site/#comments</comments>
		<pubDate>Wed, 06 May 2009 04:35:24 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=46</guid>
		<description><![CDATA[In this ever increasing era of web development, the facilities and features given by desktop application is also wanted and must given by the web application. Because of the business spread across the many places the web is also preferred now over the desktop applications.
Charts are for analyzing the data stored by the database of [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>In this ever increasing era of web development, the facilities and features given by desktop application is also wanted and must given by the web application. Because of the business spread across the many places the web is also preferred now over the desktop applications.</p>
<p>Charts are for analyzing the data stored by the database of if any. Thankfully there is one open source library based on Prototype Framework of javascript is available named  <a href="http://www.deensoft.com/lab/protochart/index.php">Protochart</a>.</p>
<p>ProtoChart using Prototype and Canvas to create good looking charts. like<br />
    * Line, bar, pie, curve, mix, and area charts available</p>
<p><a href="http://www.deensoft.com/lab/protochart/index.php">Overview</a><br />
<a href="http://www.deensoft.com/lab/protochart/docs/files/ProtoChart-js.html">Documentation</a><br />
<a href="http://www.deensoft.com/lab/protochart/piechart.php">Demo</a></p>
<p>Very fine work done by them, and use it with their tems and conditions</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/05/06/charts-and-analysis-for-your-site/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:7px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 2 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-0687753067406098"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "E3FA11";
		google_color_link = "FFFFFF"; google_color_bg = "A2AB2B";
		google_color_text = "000000"; google_color_url = "FFFFFF";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>WordPress for Designers Series</title>
		<link>http://blog.amphee.com/index.php/2009/05/04/wordpress-for-designers-series/</link>
		<comments>http://blog.amphee.com/index.php/2009/05/04/wordpress-for-designers-series/#comments</comments>
		<pubDate>Mon, 04 May 2009 04:45:37 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[php development]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=44</guid>
		<description><![CDATA[WordPress is not only  a web technology by itself but excellent  combination of  HTML, CSS, PHP and jQuery.  The most popular blogging platform and one you’ve most likely heard of. When you’re ready to learn how to use WordPress, these tutorials will teach you what you need to know.
If you want to learn how to [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>WordPress is not only  a web technology by itself but excellent  combination of  HTML, CSS, PHP and jQuery.  The most popular blogging platform and one you’ve most likely heard of. When you’re ready to learn how to use WordPress, these tutorials will teach you what you need to know.</p>
<p>If you want to learn how to work with WordPress, one of the best places to start is by watching this series of screencasts. Okay, so this isn’t one tutorial but that’s what I’m calling it since it’s one big series covering one subject, WordPress. This series isn’t finished yet either so make sure you subscribe to the ThemeForest blog to keep up to date on new screencasts as they arrive</p>
<p>i have few links for you chk this</p>
<ul>
<li><a href="http://blog.themeforest.net/screencasts/new-wp-video-series-and-free-rockstar-book/">WordPress for Designers: Day 1</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-2/">WordPress for Designers: Day 2</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-3/">WordPress for Designers: Day 3</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-4/">WordPress for Designers: Day 4</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-5/">WordPress for Designers: Day 5</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-6/">WordPress for Designers: Day 6</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-7/">WordPress for Designers: Day 7</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-8/">WordPress for Designers: Day 8</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-9/">WordPress for Designers: Day 9</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-10/">WordPress for Designers: Day 10</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-11/">WordPress for Designers: Day 11</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-12/">WordPress for Designers: Day 12</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-13/">WordPress for Designers: Day 13</a></li>
<li><a href="http://blog.themeforest.net/wordpress/wordpress-for-designers-day-14/">WordPress for Designers: Day 14</a></li>
</ul>
<p>hope your enjoyed it <img src='http://blog.amphee.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/05/04/wordpress-for-designers-series/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

