<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Web Development Tips</title>
	<atom:link href="http://webcoding.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://webcoding.wordpress.com</link>
	<description>Design Look and Feel Web Pages!...</description>
	<lastBuildDate>Wed, 15 Jun 2011 12:19:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='webcoding.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Web Development Tips</title>
		<link>http://webcoding.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://webcoding.wordpress.com/osd.xml" title="Web Development Tips" />
	<atom:link rel='hub' href='http://webcoding.wordpress.com/?pushpress=hub'/>
		<item>
		<title>PHP &#8211; Create thumbnail image</title>
		<link>http://webcoding.wordpress.com/2011/06/15/php-create-thumbnail-image/</link>
		<comments>http://webcoding.wordpress.com/2011/06/15/php-create-thumbnail-image/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 11:05:43 +0000</pubDate>
		<dc:creator>slvramesh</dc:creator>
				<category><![CDATA[Image]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[create small image]]></category>
		<category><![CDATA[create thumbnail]]></category>
		<category><![CDATA[image thumbnail]]></category>
		<category><![CDATA[php thumbnail]]></category>

		<guid isPermaLink="false">http://webcoding.wordpress.com/?p=85</guid>
		<description><![CDATA[PHP &#8211; Create thumbnail image /** Common functions */ function make_thumb($name, $src, $dest, $new_w, $new_h) { $border=false; $transparency=true; $base64=false; if(!file_exists($src.DS.$name)) return false; $arr = split("\.", $name); $ext = strtolower($arr[count($arr)-1]); if($ext=="jpeg" &#124;&#124; $ext=="jpg"){ $img = @imagecreatefromjpeg($src.DS.$name); } elseif($ext=="png"){ $img = @imagecreatefrompng($src.DS.$name); } elseif($ext=="gif") { $img = @imagecreatefromgif($src.DS.$name); } if(!$img) return $name; $old_x = imageSX($img); $old_y = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=85&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>PHP &#8211; Create thumbnail image<br />
<code>/** Common functions */<br />
    function make_thumb($name, $src, $dest, $new_w, $new_h) {<br />
        $border=false;<br />
        $transparency=true;<br />
        $base64=false;</p>
<p>        if(!file_exists($src.DS.$name))<br />
            return false;</p>
<p>        $arr = split("\.", $name);<br />
        $ext = strtolower($arr[count($arr)-1]);</p>
<p>        if($ext=="jpeg" || $ext=="jpg"){<br />
            $img = @imagecreatefromjpeg($src.DS.$name);<br />
        } elseif($ext=="png"){<br />
            $img = @imagecreatefrompng($src.DS.$name);<br />
        } elseif($ext=="gif") {<br />
            $img = @imagecreatefromgif($src.DS.$name);<br />
        }<br />
        if(!$img)<br />
            return $name;</p>
<p>        $old_x = imageSX($img);<br />
        $old_y = imageSY($img);</p>
<p>        // proportionately - re-size image<br />
        /*<br />
         if($old_x &lt; $new_w &amp;&amp; $old_y  $old_y) {<br />
            $thumb_w = $new_w;<br />
            $thumb_h = floor(($old_y*($new_h/$old_x)));<br />
        } elseif ($old_x &lt; $old_y) {<br />
            $thumb_w = floor($old_x*($new_w/$old_y));<br />
            $thumb_h = $new_h;<br />
        } elseif ($old_x == $old_y) {<br />
            $thumb_w = $new_w;<br />
            $thumb_h = $new_h;<br />
        }*/</p>
<p>        $thumb_w = $new_w;<br />
        $thumb_h = $new_h;</p>
<p>        $thumb_w = ($thumb_w&lt;1) ? 1 : $thumb_w;<br />
        $thumb_h = ($thumb_h= 0) {<br />
                    //its transparent<br />
                    $trnprt_color = imagecolorsforindex($img, $trnprt_indx);<br />
                    $trnprt_indx = imagecolorallocate($new_img, $trnprt_color['red'], $trnprt_color['green'], $trnprt_color['blue']);<br />
                    imagefill($new_img, 0, 0, $trnprt_indx);<br />
                    imagecolortransparent($new_img, $trnprt_indx);<br />
                }<br />
            }<br />
            else{<br />
                $white = imagecolorallocate($new_img, 255, 255, 255);<br />
                Imagefill($new_img, 0, 0, imagecolorallocate($new_img, 255, 255, 255));<br />
                imagefilledrectangle($new_img, 0, 0, $new_w, $new_h, $white);<br />
            }<br />
        } else {<br />
            $white = imagecolorallocate($new_img, 255, 255, 255);<br />
            Imagefill($new_img, 0, 0, imagecolorallocate($new_img, 255, 255, 255));<br />
            imagefilledrectangle($new_img, 0, 0, $thumb_w, $thumb_h, $white);<br />
        }</p>
<p>        imagecopyresampled($new_img, $img, 0,0,0,0, $thumb_w, $thumb_h, $old_x, $old_y);</p>
<p>        if($border) {<br />
            $black = imagecolorallocate($new_img, 0, 0, 0);<br />
            imagerectangle($new_img,0,0, $thumb_w, $thumb_h, $black);<br />
        }</p>
<p>        $dest_filename = $arr[0].'_'.$new_w.'_'.$new_h.'.'.$ext;<br />
        $dest_filename = strtolower($dest_filename);<br />
        $dest_path = $dest.DS.$dest_filename;</p>
<p>        if($base64) {<br />
            ob_start();<br />
            imagepng($new_img);<br />
            $img = ob_get_contents();<br />
            ob_end_clean();<br />
            $return = base64_encode($img);<br />
        } else {<br />
            if($ext=="jpeg" || $ext=="jpg"){<br />
                imagejpeg($new_img, $dest_path);<br />
            } elseif($ext=="png"){<br />
                imagepng($new_img, $dest_path);<br />
            } elseif($ext=="gif") {<br />
                imagegif($new_img, $dest_path);<br />
            }<br />
        }<br />
        imagedestroy($new_img);<br />
        imagedestroy($img);</p>
<p>        //Delete the orginal file<br />
        if($src==$dest)<br />
            @unlink($src.DS.$name);<br />
        return $dest_filename;<br />
    }<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webcoding.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webcoding.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webcoding.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webcoding.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webcoding.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webcoding.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webcoding.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webcoding.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webcoding.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webcoding.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webcoding.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webcoding.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webcoding.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webcoding.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=85&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webcoding.wordpress.com/2011/06/15/php-create-thumbnail-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c72b7e5981660dfa65637d3c6fb14432?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">slvramesh</media:title>
		</media:content>
	</item>
		<item>
		<title>Drupal : Find the path or menu available in drupal site.</title>
		<link>http://webcoding.wordpress.com/2010/09/01/drupal-find-the-path-or-menu-available-in-drupal-site/</link>
		<comments>http://webcoding.wordpress.com/2010/09/01/drupal-find-the-path-or-menu-available-in-drupal-site/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 13:29:42 +0000</pubDate>
		<dc:creator>slvramesh</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://webcoding.wordpress.com/?p=81</guid>
		<description><![CDATA[php, drupal, menu, drupal menu, drupal menu system.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=81&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you going to add or edit path / menu in your site, it is necessary to check the menu are already taken by the site, other wise it will conflict.<br />
When you create internal menu the drupal system automatically check with you site. but when you create external or via coding the below code will help to validate the path already taken or not.</p>
<p>All the internal or external menus are stored in the table &#8220;menu_router&#8221;.</p>
<p><code>/*<br />
 * Find the path is available<br />
 * Parameter menu path<br />
 * return TRUE if menu exists else return FALSE<br />
 */</p>
<p>function is_path_exists($path) {<br />
  return (db_fetch_array(db_query("SELECT * FROM {menu_router} where path = '%s' ", $path))) ? TRUE : FALSE;<br />
}<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webcoding.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webcoding.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webcoding.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webcoding.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webcoding.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webcoding.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webcoding.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webcoding.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webcoding.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webcoding.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webcoding.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webcoding.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webcoding.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webcoding.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=81&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webcoding.wordpress.com/2010/09/01/drupal-find-the-path-or-menu-available-in-drupal-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c72b7e5981660dfa65637d3c6fb14432?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">slvramesh</media:title>
		</media:content>
	</item>
		<item>
		<title>How to call customized page template in drupal pages?</title>
		<link>http://webcoding.wordpress.com/2010/07/13/how-to-call-customized-page-template-in-drupal-pages/</link>
		<comments>http://webcoding.wordpress.com/2010/07/13/how-to-call-customized-page-template-in-drupal-pages/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 11:52:48 +0000</pubDate>
		<dc:creator>slvramesh</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://webcoding.wordpress.com/?p=79</guid>
		<description><![CDATA[drupal, template, customize template, customize theme, drupal theme<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=79&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Drupal template system is very interesting because you can call any of page template as to your decided page. The following way you can call page template in drupal.<br />
1) As per node or content type<br />
2) As per menu<br />
3) As per your argument in menu</p>
<p>The above three categories are covers your all drupal pages. So the following code will used to get template suggestion as per node or menu or argument.</p>
<p><code><br />
/**<br />
 * Override or insert PHPTemplate variables into the templates.<br />
 */<br />
function phptemplate_preprocess_page(&amp;$vars) {<br />
   // first, proceed with a modifed version of the standard<br />
  // Drupal template suggestion calls<br />
  $i = 0;<br />
  $suggestions = array();<br />
  $suggestion = 'page';<br />
  while ($arg = arg($i++)) {<br />
    $suggestions[] = $suggestion .'-'. $arg;<br />
    if (!is_numeric($arg)) {<br />
      $suggestion .= '-'. $arg;<br />
    }<br />
  }<br />
  if (drupal_is_front_page()) {<br />
    $suggestions[] = 'page-front';<br />
  }<br />
  // next, check for templates that use the path alias<br />
  if (module_exists('path')) {<br />
    $alias = drupal_get_path_alias(str_replace('/edit','',$_GET['q']));<br />
    if ($alias != $_GET['q']) {<br />
      $template_filename = 'page';<br />
      foreach (explode('/', $alias) as $path_part) {<br />
        $template_filename = $template_filename . '-' . $path_part;<br />
        $suggestions[] = $template_filename;<br />
      }<br />
    }<br />
    $vars['template_files'] = $suggestions;<br />
  } // end path alias template check<br />
  if ($suggestions) {<br />
    $vars['template_files'] = $suggestions;<br />
  }</p>
<p>  if (isset($vars['node'])) {<br />
    // When viewing a node focused as a full "page", it will suggest the node type.<br />
    // For example, a node type of "some_foo" will search for "page-some-foo.tpl.php".<br />
    $vars['template_files'][] =  'page-'. str_replace('_', '-', $vars['node']-&gt;type);<br />
  }<br />
}<br />
</code></p>
<p>The phptemplate_page_preprocess used to override drupal variables. The template file have been override the above code.</p>
<p>The same way you can user node template also.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webcoding.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webcoding.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webcoding.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webcoding.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webcoding.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webcoding.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webcoding.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webcoding.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webcoding.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webcoding.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webcoding.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webcoding.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webcoding.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webcoding.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=79&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webcoding.wordpress.com/2010/07/13/how-to-call-customized-page-template-in-drupal-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c72b7e5981660dfa65637d3c6fb14432?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">slvramesh</media:title>
		</media:content>
	</item>
		<item>
		<title>How to display sub-menus in drupal?</title>
		<link>http://webcoding.wordpress.com/2010/06/22/how-to-display-sub-menus-in-drupal/</link>
		<comments>http://webcoding.wordpress.com/2010/06/22/how-to-display-sub-menus-in-drupal/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 02:36:13 +0000</pubDate>
		<dc:creator>slvramesh</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://webcoding.wordpress.com/?p=73</guid>
		<description><![CDATA[The following code used to get sub-menu item of their parent menu. Syntax: $menu = menu_get_item(&#8221;); Example: $menu = menu_get_item('admin/store/export'); $content = system_admin_menu_block($menu); $output = theme('admin_block_content', $content); The above code get all the sub-menus under export parent menu.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=73&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The following code used to get sub-menu item of their parent menu.<br />
<strong>Syntax:</strong><br />
$menu = menu_get_item(&#8221;);</p>
<p><strong>Example:</strong><br />
<code><br />
$menu = menu_get_item('admin/store/export');<br />
$content = system_admin_menu_block($menu);<br />
$output = theme('admin_block_content', $content);<br />
</code><br />
The above code get all the sub-menus under export parent menu.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webcoding.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webcoding.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webcoding.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webcoding.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webcoding.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webcoding.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webcoding.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webcoding.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webcoding.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webcoding.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webcoding.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webcoding.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webcoding.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webcoding.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=73&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webcoding.wordpress.com/2010/06/22/how-to-display-sub-menus-in-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c72b7e5981660dfa65637d3c6fb14432?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">slvramesh</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP Interview questions</title>
		<link>http://webcoding.wordpress.com/2010/05/28/php-interview-questions/</link>
		<comments>http://webcoding.wordpress.com/2010/05/28/php-interview-questions/#comments</comments>
		<pubDate>Fri, 28 May 2010 13:23:54 +0000</pubDate>
		<dc:creator>slvramesh</dc:creator>
				<category><![CDATA[interview]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[questions]]></category>

		<guid isPermaLink="false">http://webcoding.wordpress.com/?p=66</guid>
		<description><![CDATA[I decided to keep on updating interview questions in this post. Because of hadling interview / attending interview in my previous company most of technical guys very strong in php coding and mysql etc. But no one update her/his small small technical knowledge even my self. So I will update my self and to you. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=66&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I decided to keep on updating interview questions in this post. Because of hadling interview / attending interview in my previous company most of technical guys very strong in php coding and mysql etc. But no one update her/his small small technical knowledge even my self. So I will update my self and to you. Keep on view this post every week. I will update my knowledge this post. Do you have any question feel free just comment this post i will answer you.</p>
<p><strong>Question 1: How to validate XHTML?</strong></p>
<p><strong>Answer:</strong> Before going to answer this question, i need to explain some of basic things in XHTML. I used Dreamweaver in windows, Aptana in Mac, Komodo in Linux. Those editors make default in document type, header and body tags. some of guys never take care about the document type because of the editors will handle. It is important one. Make sure what are the editors you are used and what are the default code placed when you create new html file. I hope every one should know about <a href="http://www.w3schools.com/xhtml/default.asp">what is XHTML</a>. Let see about How to validate XHTML.</p>
<p>The XHTML have Three doctype.<br />
1. strict<br />
2. transitional<br />
3. frameset</p>
<p>Using above three doctype you can validate XHTML. For more information see <a href="http://www.w3schools.com/xhtml/xhtml_validate.asp">How to validate XHTML</a></p>
<p><strong>Question 2: What are the functions used to find Brwoser in AJAX?</strong><br />
Answer:<br />
For getting IE7+, Firefox, Chrome, Opera, Safari browsers use the following code.<br />
  xmlhttp=new XMLHttpRequest();</p>
<p>For getting IE6, IE5 use the following code<br />
  xmlhttp=new ActiveXObject(&#8220;Microsoft.XMLHTTP&#8221;);</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webcoding.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webcoding.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webcoding.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webcoding.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webcoding.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webcoding.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webcoding.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webcoding.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webcoding.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webcoding.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webcoding.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webcoding.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webcoding.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webcoding.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=66&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webcoding.wordpress.com/2010/05/28/php-interview-questions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c72b7e5981660dfa65637d3c6fb14432?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">slvramesh</media:title>
		</media:content>
	</item>
		<item>
		<title>How to display caption for galleria image gllery with image filefield &#8211; Drupal</title>
		<link>http://webcoding.wordpress.com/2010/05/10/how-to-display-caption-for-galleria-image-gllery-with-image-filefield-drupal/</link>
		<comments>http://webcoding.wordpress.com/2010/05/10/how-to-display-caption-for-galleria-image-gllery-with-image-filefield-drupal/#comments</comments>
		<pubDate>Mon, 10 May 2010 05:35:25 +0000</pubDate>
		<dc:creator>slvramesh</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://webcoding.wordpress.com/?p=64</guid>
		<description><![CDATA[drupal, php, galleria, filefield, image gallery, caption<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=64&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Problem definition:</p>
<p>Drupal is the best CMS with building media related sites. Galleria is the best module for image gallery in drupal, the galleria module did not support caption when you use image filefield because the gallery module get caption for field description. When you use filefield it is support title and alt input field.</p>
<p>So here is the solution for getting caption for image in title tag.</p>
<p>1) In the content type manage fields enable alt and title tags.<br />
2) Add the following coding in your galleria.module file function theme_galleria_formatter_imagefield_galleria end the &#8220;alt&#8221; text.<br />
&#8216;title&#8217; =&gt; $element[$key]['#item']['data']['title']<br />
3) Replace the coding in the function &#8220;template_preprocess_galleria&#8221;<br />
 $caption = ($image-&gt;title != $image-&gt;filename) ? $image-&gt;description : &#8221;;<br />
to<br />
 $caption = ($image-&gt;title != $image-&gt;filename) ? $image-&gt;title : &#8221;;</p>
<p>Now view your galleria image gallery, caption will dispaly.</p>
<p>Cheers!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webcoding.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webcoding.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webcoding.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webcoding.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webcoding.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webcoding.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webcoding.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webcoding.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webcoding.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webcoding.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webcoding.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webcoding.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webcoding.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webcoding.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=64&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webcoding.wordpress.com/2010/05/10/how-to-display-caption-for-galleria-image-gllery-with-image-filefield-drupal/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c72b7e5981660dfa65637d3c6fb14432?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">slvramesh</media:title>
		</media:content>
	</item>
		<item>
		<title>Menu breadcrumb &#8211; Problem in Views pages (Drupal)</title>
		<link>http://webcoding.wordpress.com/2010/05/07/menu-breadcrumb-problem-in-views-pages/</link>
		<comments>http://webcoding.wordpress.com/2010/05/07/menu-breadcrumb-problem-in-views-pages/#comments</comments>
		<pubDate>Fri, 07 May 2010 10:50:33 +0000</pubDate>
		<dc:creator>slvramesh</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://webcoding.wordpress.com/?p=60</guid>
		<description><![CDATA[Menu breadcrumb has problem in views page. Having spend some times customized in template pages. Add the below code in your template.php them file. function phptemplate_preprocess_page(&#38;$variables) { $breadcrumb = drupal_set_breadcrumb(); if($breadcrumb[1]==&#8221;"){ $breadcrumb[1] = $variables["title"]; $variables['breadcrumb'] = theme(&#8216;breadcrumb&#8217;, $breadcrumb); } }<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=60&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Menu breadcrumb has problem in views page. Having spend some times customized  in template pages.</p>
<p>Add the below code in your template.php them file.</p>
<p>function phptemplate_preprocess_page(&amp;$variables) {<br />
$breadcrumb = drupal_set_breadcrumb();<br />
  if($breadcrumb[1]==&#8221;"){<br />
    $breadcrumb[1] = $variables["title"];<br />
    $variables['breadcrumb'] = theme(&#8216;breadcrumb&#8217;, $breadcrumb);<br />
  }<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webcoding.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webcoding.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webcoding.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webcoding.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webcoding.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webcoding.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webcoding.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webcoding.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webcoding.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webcoding.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webcoding.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webcoding.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webcoding.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webcoding.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=60&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webcoding.wordpress.com/2010/05/07/menu-breadcrumb-problem-in-views-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c72b7e5981660dfa65637d3c6fb14432?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">slvramesh</media:title>
		</media:content>
	</item>
		<item>
		<title>HTML5 Forms</title>
		<link>http://webcoding.wordpress.com/2010/03/29/html5-forms/</link>
		<comments>http://webcoding.wordpress.com/2010/03/29/html5-forms/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 06:03:00 +0000</pubDate>
		<dc:creator>slvramesh</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://webcoding.wordpress.com/?p=57</guid>
		<description><![CDATA[HTML5 Forms have more features. Check his url http://snook.ca/archives/html_and_css/html5-forms-are-coming<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=57&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>HTML5 Forms have more features. Check his url http://snook.ca/archives/html_and_css/html5-forms-are-coming</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webcoding.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webcoding.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webcoding.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webcoding.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webcoding.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webcoding.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webcoding.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webcoding.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webcoding.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webcoding.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webcoding.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webcoding.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webcoding.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webcoding.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=57&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webcoding.wordpress.com/2010/03/29/html5-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c72b7e5981660dfa65637d3c6fb14432?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">slvramesh</media:title>
		</media:content>
	</item>
		<item>
		<title>Replace the video file relating to the client machine in post page &#8211; wordpress</title>
		<link>http://webcoding.wordpress.com/2009/11/23/replace-the-video-file-in-post-page-relating-to-client-machine/</link>
		<comments>http://webcoding.wordpress.com/2009/11/23/replace-the-video-file-in-post-page-relating-to-client-machine/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 11:09:48 +0000</pubDate>
		<dc:creator>slvramesh</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[dynamic videos]]></category>
		<category><![CDATA[os related video]]></category>

		<guid isPermaLink="false">http://webcoding.wordpress.com/?p=54</guid>
		<description><![CDATA[The below code used to show dynamic videos for depending upon the client machine. Example i have open the page in windows machine the windows video is shown. if i open the page in mac system the mac video is shown. Function refference: 1) getos &#8211; this function used to get client machine environment 2) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=54&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The below code used to show dynamic videos for depending upon the client machine.</p>
<p>Example i have open the page in windows machine the windows video is shown. if i open the page in mac system the mac video is shown.</p>
<p><strong>Function refference:</strong></p>
<p>1) getos &#8211; this function used to get client machine environment</p>
<p>2) replacevideo &#8211; this function used to return the bulk of video object</p>
<p>3) add_video_content &#8211; this function used to filter the content.</p>
<p><strong>How to use this code?</strong></p>
<p>1) Open in your wordpress/wp-content/themes/youthemes/functions.php file and add the below code.</p>
<p>2) Edit your post / create your post and add the line &#8216;[getvideo 1]&#8216;.</p>
<p><strong>Code:</strong></p>
<p>/*<br />
* function find the text &#8220;[getvideo 1]&#8221; in your post content<br />
* and replace the video file<br />
*/<br />
function add_video_content($content = &#8221;) {<br />
$platform = getos();<br />
$winmsg = &#8216;&lt;strong&gt;Windows videos&lt;/strong&gt;&lt;br&gt;&#8217;;<br />
$macmsg = &#8216;&lt;strong&gt;Mac videos&lt;/strong&gt;&lt;br&gt;&#8217;;<br />
if(trim($platform)==&#8221;mac&#8221;)<br />
$content = str_replace(&#8216;[getvideo 1]&#8216;, $macmsg . replacevideo(&#8216;mac/macvideo.flv&#8217;), $content);<br />
else<br />
$content = str_replace(&#8216;[getvideo 1]&#8216;, $winmsg . replacevideo(&#8216;windows.flv&#8217;), $content);<br />
echo $content;<br />
}</p>
<p>//add filter the_content<br />
add_filter( &#8220;the_content&#8221;, &#8220;add_video_content&#8221; );</p>
<p>//replaced video object<br />
function replacevideo($vidfile){<br />
$st = &#8216;&lt;object width=&#8221;500&#8243; height=&#8221;402&#8243; data=&#8221;http://dragonfablepowerlevel.com/members/flowplayer/flowplayer-3.1.5.swf&#8221; type=&#8221;application/x-shockwave-flash&#8221;&gt;&#8217;;<br />
$st .= &#8216;&lt;!&#8211;&gt; &lt;![endif]&#8211;&gt;&#8217;;<br />
$st .= &#8216;&lt;!&#8211;[if IE]&gt;&#8217;;<br />
$st .= &#8216;&lt;object type=&#8221;application/x-shockwave-flash&#8221; width=&#8221;500&#8243; height=&#8221;402&#8243;&#8216;;<br />
$st .= &#8216;classid=&#8221;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&#8243;&#8216;;<br />
$st .= &#8216;codebase=&#8221;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0&#8243;&gt;&#8217;;<br />
$st .= &#8216;&lt;![endif]&#8211;&gt;&#8217;;<br />
$st .= &#8216;&lt;param value=&#8221;http://yourdomain/flowplayer/flowplayer-3.1.5.swf&#8221; name=&#8221;movie&#8221;/&gt;&#8217;;<br />
$st .= &#8216;&lt;param value=&#8221;true&#8221; name=&#8221;allowFullScreen&#8221;/&gt;&#8217;;<br />
$st .= &#8216;&lt;param value=&#8221;transparent&#8221; name=&#8221;wmode&#8221;/&gt;&#8217;;<br />
$st .= &#8216;&lt;param value=&#8221;sameDomain&#8221; name=&#8221;allowScriptAccess&#8221;/&gt;&#8217;;<br />
$st .= &#8216;&lt;param value=&#8221;high&#8221; name=&#8221;quality&#8221;/&gt;&#8217;;<br />
$st .= &#8216;&lt;param value=&#8221;config={\&#8217;playerId\&#8217;:\&#8217;player\&#8217;,\&#8217;clip\&#8217;:{\&#8217;url\&#8217;:\&#8217;http://yourdomain/&#8217; . $vidfile .&#8217;\'},\&#8217;playlist\&#8217;:[{\'url\':\'http://yourdomain/' . $vidfile .'\',\'autoPlay\':false, \'loop\':true}]}&#8221; name=&#8221;flashvars&#8221;/&gt;&lt;p&gt;Your browser is not able to display this multimedia content.&lt;/p&gt;&#8217;;<br />
$st .= &#8216;&lt;/object&gt;&#8217;;<br />
return $st;<br />
}</p>
<p>// Get client platform<br />
function getos(){<br />
$userAgent = strtolower($_SERVER['HTTP_USER_AGENT']);<br />
if (preg_match(&#8216;/linux/&#8217;, $userAgent)) {<br />
$platform = &#8216;linux&#8217;;<br />
}<br />
elseif (preg_match(&#8216;/macintosh|mac os x/&#8217;, $userAgent)) {<br />
$platform = &#8216;mac&#8217;;<br />
}<br />
elseif (preg_match(&#8216;/windows|win32/&#8217;, $userAgent)) {<br />
$platform = &#8216;windows&#8217;;<br />
}<br />
else {<br />
$platform = &#8216;unrecognized&#8217;;<br />
}<br />
return $platform;<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webcoding.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webcoding.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webcoding.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webcoding.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webcoding.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webcoding.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webcoding.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webcoding.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webcoding.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webcoding.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webcoding.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webcoding.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webcoding.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webcoding.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=54&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webcoding.wordpress.com/2009/11/23/replace-the-video-file-in-post-page-relating-to-client-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c72b7e5981660dfa65637d3c6fb14432?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">slvramesh</media:title>
		</media:content>
	</item>
		<item>
		<title>A simple home page review: How to make a good home page?</title>
		<link>http://webcoding.wordpress.com/2009/11/09/a-simple-home-page-review-how-to-make-a-good-home-page/</link>
		<comments>http://webcoding.wordpress.com/2009/11/09/a-simple-home-page-review-how-to-make-a-good-home-page/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 18:59:05 +0000</pubDate>
		<dc:creator>slvramesh</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Professional website]]></category>

		<guid isPermaLink="false">http://webcoding.wordpress.com/?p=47</guid>
		<description><![CDATA[I interested to looking beautiful websites because of my profession is developing quality websites. I think home page is most important for every website. If the visitor able to stay 3 minutes in your home page you site is good other wise you need to concentrate your home page. The fantastic example for good home [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=47&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I interested to looking beautiful websites because of my profession is developing quality websites. I think home page is most important for every website. If the visitor able to stay 3 minutes in your home page you site is good other wise you need to concentrate your home page.</p>
<p>The fantastic example for good home page is “Google Home page”.</p>
<p>Google homepage continues to maintain a bare minimum display of only 32 words, 19 links and 0 advertisement.</p>
<p><strong>Why home page is important?</strong></p>
<ol>
<li> Without home you cant do anything. The same principle applies to your web page. So give more important to your home page.</li>
<li>All Search engine crawl your site via home page. Not only search engine the visitors also view your site via home page.</li>
<li> Home page is the icon of your business.</li>
</ol>
<p><strong>What are the things you satisfy in your home page?</strong></p>
<ol>
<li>Loading time.</li>
<li>Look and feel and Eye catching color.</li>
<li>Show your business relevant information.</li>
<li>Keywords (Meta data).</li>
<li>Browser compatibility.</li>
<li>Site navigation.</li>
</ol>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webcoding.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webcoding.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webcoding.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webcoding.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webcoding.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webcoding.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webcoding.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webcoding.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webcoding.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webcoding.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webcoding.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webcoding.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webcoding.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webcoding.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webcoding.wordpress.com&amp;blog=2401916&amp;post=47&amp;subd=webcoding&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webcoding.wordpress.com/2009/11/09/a-simple-home-page-review-how-to-make-a-good-home-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c72b7e5981660dfa65637d3c6fb14432?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">slvramesh</media:title>
		</media:content>
	</item>
	</channel>
</rss>
