<?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>CoderAustralia Blog &#187; Through WWW</title>
	<atom:link href="http://blog.coderaustralia.com/category/through-www/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.coderaustralia.com</link>
	<description>Technique, Technology, Design &#38; Development</description>
	<lastBuildDate>Tue, 31 Jan 2012 23:41:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Product Video/ Featured Video for Oscommerce</title>
		<link>http://blog.coderaustralia.com/php-programming/product-video-featured-video-for-oscommerce</link>
		<comments>http://blog.coderaustralia.com/php-programming/product-video-featured-video-for-oscommerce#comments</comments>
		<pubDate>Mon, 06 Dec 2010 05:42:38 +0000</pubDate>
		<dc:creator>nuwinda</dc:creator>
				<category><![CDATA[Php Programming]]></category>
		<category><![CDATA[Through WWW]]></category>
		<category><![CDATA[oscommerce contributions]]></category>
		<category><![CDATA[oscommerce featured videos]]></category>
		<category><![CDATA[Show videos on oscommerce]]></category>

		<guid isPermaLink="false">http://blog.coderaustralia.com/?p=241</guid>
		<description><![CDATA[Thanks for checking out this oscommerce contribution. This oscommerce cotribution let you show embed videos of your product. Once you done the basic customization You can use this contribution to display featured videos of your product. Run this in your mysql ALTER TABLE `products` ADD `products_embed_movie` text default NULL; ALTER TABLE `products` ADD `products_featured_movie` tinyint(1)&#8230;]]></description>
			<content:encoded><![CDATA[<p>Thanks for checking out this oscommerce contribution.</p>
<p>This oscommerce cotribution let you show embed videos of your product. Once you done the basic customization You can use this contribution to display featured videos of your product.</p>
<p><span id="more-241"></span></p>
<p><strong>Run this in your mysql</strong></p>
<p>ALTER TABLE `products` ADD `products_embed_movie` text default NULL;<br />
ALTER TABLE `products` ADD `products_featured_movie` tinyint(1) default NULL AFTER `products_embed_movie`;</p>
<p style="padding-left: 30px;"><strong>admin/categories.php</strong></p>
<p><strong>FIND-&gt;</strong><br />
$parameters = array(&#8216;products_name&#8217; =&gt; &#8221;,<br />
&#8216;products_description&#8217; =&gt; &#8221;,<br />
<strong>ADD AFTER-&gt; </strong><br />
&#8216;products_embed_movie&#8217; =&gt; &#8221;,<br />
&#8216;products_featured_movie&#8217; =&gt; 0,</p>
<p><strong>FIND-&gt;(there may be more than one, add affter all)</strong><br />
$products_name = $HTTP_POST_VARS['products_name'];<br />
$products_description = $HTTP_POST_VARS['products_description'];<br />
$products_url = $HTTP_POST_VARS['products_url'];<br />
<strong>ADD AFTER-&gt; </strong><br />
$products_embed_movie = $HTTP_POST_VARS['products_embed_movie'];<br />
$products_featured_movie = $HTTP_POST_VARS['products_featured_movie'];</p>
<p><strong>FIND-&gt;p.products_model, in</strong><br />
$product_query = tep_db_query(&#8220;select pd.products_name, pd.products_description,</p>
<p><strong>ADD BEFORE-&gt; </strong><br />
p.products_embed_movie,p.products_featured_movie,</p>
<p><strong>FIND-&gt;</strong><br />
if (!isset($pInfo-&gt;products_status)) $pInfo-&gt;products_status = &#8217;1&#8242;;<br />
switch ($pInfo-&gt;products_status) {<br />
case &#8217;0&#8242;: $in_status = false; $out_status = true; break;<br />
case &#8217;1&#8242;:<br />
default: $in_status = true; $out_status = false;<br />
}</p>
<p><strong>ADD AFTER-&gt;</strong><br />
if (!isset($pInfo-&gt;products_featured_movie)) $pInfo-&gt;products_featured_movie = &#8217;1&#8242;;<br />
switch ($pInfo-&gt;products_featured_movie) {<br />
case &#8217;0&#8242;: $in_moviefeaturedstatus = false; $out_moviefeaturedstatus = true; break;<br />
case &#8217;1&#8242;:<br />
default: $in_moviefeaturedstatus = true; $out_moviefeaturedstatus = false;<br />
}</p>
<p><strong>FIND -&gt;</strong><br />
&lt;tr bgcolor=&#8221;#ebebff&#8221;&gt;<br />
&lt;td&gt;&lt;?php echo TEXT_PRODUCTS_PRICE_NET; ?&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;?php echo tep_draw_separator(&#8216;pixel_trans.gif&#8217;, &#8217;24&#8242;, &#8217;15&#8242;) . &#8216;&amp;nbsp;&#8217; . tep_draw_input_field(&#8216;products_price&#8217;, $pInfo-&gt;products_price, &#8216;onKeyUp=&#8221;updateGross()&#8221;&#8216;); ?&gt;&lt;/td&gt;<br />
&lt;/tr&gt;</p>
<p><strong>ADD AFTER-&gt;</strong><br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;?php echo TEXT_EMBED_MOVIE; ?&gt;&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;table border=&#8221;0&#8243; cellspacing=&#8221;0&#8243; cellpadding=&#8221;0&#8243;&gt;<br />
&lt;tr&gt;<br />
&lt;td valign=&#8221;top&#8221;&gt;<br />
&lt;?php echo tep_draw_textarea_field(&#8216;products_embed_movie&#8217;, &#8216;soft&#8217;, &#8217;60&#8242;, &#8217;8&#8242;,$pInfo-&gt;products_embed_movie); ?&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<p>&lt;/td&gt;<br />
&lt;/tr&gt;</p>
<p>&lt;tr bgcolor=&#8221;#ebebff&#8221;&gt;<br />
&lt;td&gt;&lt;?php echo TEXT_SETMOVIE_AS_FEATURED; ?&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;?php echo tep_draw_separator(&#8216;pixel_trans.gif&#8217;, &#8217;24&#8242;, &#8217;15&#8242;) . &#8216;&amp;nbsp;&#8217; . tep_draw_radio_field(&#8216;products_featured_movie&#8217;, &#8217;1&#8242;, $in_status) . &#8216;&amp;nbsp;&#8217; . TEXT_YES . &#8216;&amp;nbsp;&#8217; . tep_draw_radio_field(&#8216;products_featured_movie&#8217;, &#8217;0&#8242;, $out_status) . &#8216;&amp;nbsp;&#8217; . TEXT_NO; ?&gt;&lt;/td&gt;<br />
&lt;/tr&gt;</p>
<p><strong>FIND-&gt;</strong><br />
echo tep_draw_hidden_field(&#8216;products_image&#8217;, stripslashes($products_image_name));<br />
<strong>ADD AFTER-&gt;</strong><br />
echo tep_draw_hidden_field(&#8216;products_embed_movie&#8217;, stripslashes($products_embed_movie));<br />
echo tep_draw_hidden_field(&#8216;products_featured_movie&#8217;, stripslashes($products_featured_movie));</p>
<p><strong>FIND-&gt;</strong><br />
&lt;td&gt;&lt;?php echo tep_image(DIR_WS_CATALOG_IMAGES . $products_image_name, $pInfo-&gt;products_name, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, &#8216;align=&#8221;right&#8221; hspace=&#8221;5&#8243; vspace=&#8221;5&#8243;&#8216;) . $pInfo-&gt;products_description; ?&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
<strong>ADD AFTER-&gt;</strong><br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;?php echo $pInfo-&gt;products_embed_movie?&gt;&lt;/td&gt;<br />
&lt;/tr&gt;</p>
<p><strong>FIND-&gt;</strong><br />
tep_db_query(&#8220;insert into &#8221; . TABLE_PRODUCTS . &#8221; (products_quantity, products_model,products_image, products_retail_price, products_price, products_date_added, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id) values (&#8216;&#8221; . tep_db_input($product['products_quantity']) . &#8220;&#8216;, &#8216;&#8221; . tep_db_input($product['products_model']) . &#8220;&#8216;, &#8216;&#8221; . tep_db_input($product['products_image']) . &#8220;&#8216;, &#8216;&#8221; . tep_db_input($product['products_retail_price']) . &#8220;&#8216;, &#8216;&#8221; . tep_db_input($product['products_price']) . &#8220;&#8216;,  now(), &#8221; . (empty($product['products_date_available']) ? &#8220;null&#8221; : &#8220;&#8216;&#8221; . tep_db_input($product['products_date_available']) . &#8220;&#8216;&#8221;) . &#8220;, &#8216;&#8221; . tep_db_input($product['products_weight']) . &#8220;&#8216;, &#8217;0&#8242;, &#8216;&#8221; . (int)$product['products_tax_class_id'] . &#8220;&#8216;, &#8216;&#8221; . (int)$product['manufacturers_id'] . &#8220;&#8216;)&#8221;);<br />
<strong>REPLACEWITH-&gt;</strong><br />
tep_db_query(&#8220;insert into &#8221; . TABLE_PRODUCTS . &#8221; (products_quantity, products_model,products_image, products_retail_price, products_price, products_date_added, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id,products_embed_movie,products_featured_movie) values (&#8216;&#8221; . tep_db_input($product['products_quantity']) . &#8220;&#8216;, &#8216;&#8221; . tep_db_input($product['products_model']) . &#8220;&#8216;, &#8216;&#8221; . tep_db_input($product['products_image']) . &#8220;&#8216;, &#8216;&#8221; . tep_db_input($product['products_retail_price']) . &#8220;&#8216;, &#8216;&#8221; . tep_db_input($product['products_price']) . &#8220;&#8216;,  now(), &#8221; . (empty($product['products_date_available']) ? &#8220;null&#8221; : &#8220;&#8216;&#8221; . tep_db_input($product['products_date_available']) . &#8220;&#8216;&#8221;) . &#8220;, &#8216;&#8221; . tep_db_input($product['products_weight']) . &#8220;&#8216;, &#8217;0&#8242;, &#8216;&#8221; . (int)$product['products_tax_class_id'] . &#8220;&#8216;, &#8216;&#8221; . (int)$product['manufacturers_id'] . &#8220;&#8216;, &#8216;&#8221; . tep_db_input($product['products_embed_movie']) . &#8220;&#8216;, &#8216;&#8221; . tep_db_input($product['products_featured_movie']) . &#8220;&#8216;)&#8221;);</p>
<p><strong><br />
FIND-&gt;</strong><br />
$sql_data_array = array(&#8216;products_quantity&#8217; =&gt; (int)tep_db_prepare_input($HTTP_POST_VARS['products_quantity']),<br />
&#8216;products_model&#8217; =&gt; tep_db_prepare_input($HTTP_POST_VARS['products_model']),<br />
&#8216;products_price&#8217; =&gt; tep_db_prepare_input($HTTP_POST_VARS['products_price']),<br />
&#8216;products_retail_price&#8217; =&gt;  tep_db_prepare_input($HTTP_POST_VARS['products_retail_price']),<br />
&#8216;products_date_available&#8217; =&gt; $products_date_available,<br />
&#8216;products_weight&#8217; =&gt; (float)tep_db_prepare_input($HTTP_POST_VARS['products_weight']),<br />
&#8216;products_status&#8217; =&gt; tep_db_prepare_input($HTTP_POST_VARS['products_status']),<br />
&#8216;products_tax_class_id&#8217; =&gt; tep_db_prepare_input($HTTP_POST_VARS['products_tax_class_id']),</p>
<p><strong>ADD AFTER-&gt;</strong><br />
&#8216;products_embed_movie&#8217; =&gt; tep_db_prepare_input($HTTP_POST_VARS['products_embed_movie']),<br />
&#8216;products_featured_movie&#8217; =&gt; tep_db_prepare_input($HTTP_POST_VARS['products_featured_movie']),</p>
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">
<p style="padding-left: 30px;"><strong>admin/includes/langauge/english.php<br />
ADD TO BOTTOM</strong><br />
define(&#8216;TEXT_EMBED_MOVIE&#8217;,'Embed Movie&#8217;);<br />
define(&#8216;TEXT_SETMOVIE_AS_FEATURED&#8217;,'Movie Featured&#8217;);<br />
define(&#8216;TEXT_YES&#8217;,'Yes&#8217;);<br />
define(&#8216;TEXT_NO&#8217;,'No&#8217;);</p>
<p><strong>includes/langauge/english.php</strong><br />
//Modifyed from here for coderaustralia FEATURED VIDEO<br />
define(&#8216;TEXT_FEATURED&#8217;, &#8216;Video of the Month&#8217;);</p>
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">
<p style="padding-left: 30px;"><strong>FOLLOWING CODING IS OPTIONAL AND DEPEND ON YOUR SITE</strong></p>
<p style="padding-left: 30px;"><strong><br />
</strong></p>
<p style="padding-left: 30px;"><strong>TO SHOW VIDEO IN FEATURED PRODUCT VIDEO<br />
index.php</strong></p>
<p>if( !empty($random_product['products_featured_movie']) &amp;&amp; !empty($random_product['products_embed_movie']) ){</p>
<p>$embed_video=$random_product['products_embed_movie'];</p>
<p>} else {<br />
$featured_query = tep_db_query(&#8220;select p.products_id,pd.products_name, p.products_embed_movie from &#8221; . TABLE_PRODUCTS . &#8221; p, &#8221; . TABLE_PRODUCTS_DESCRIPTION . &#8221; pd where p.products_status = &#8217;1&#8242; and pd.products_id = p.products_id and pd.language_id = &#8216;&#8221; . (int)$languages_id . &#8220;&#8216; and p.products_embed_movie&lt;&gt;&#8221; and p.products_featured_movie= &#8217;1&#8242;&#8221;);<br />
$featured_embed = tep_db_fetch_array($featured_query);<br />
$embed_video=$featured_embed['products_embed_movie'];<br />
}</p>
<p>if( !empty($embed_video) ){?&gt;</p>
<p>&lt;?php echo $embed_video;?&gt;</p>
<p>&lt;?php } ?&gt;</p>
<p><strong>SHOW VIDEO IN PRODUCT LISTING PAGE<br />
product_info.php</strong></p>
<p><strong>FIND-&gt;</strong><br />
$product_info_query = tep_db_query(&#8220;select p.products_id, pd.products_name, pd.products_description, p.products_model,<br />
<strong>ADD AFTER</strong><br />
p.products_embed_movie, p.products_featured_movie,</p>
<p><strong>ADD THIS WHERE YOU NEED THE VIDEO</strong><br />
&lt;?php     if( !empty($product_info['products_featured_movie']) &amp;&amp; !empty($product_info['products_embed_movie']) ){ ?&gt;<br />
&lt;p style=&#8221;margin:0 auto;text-align:center;&#8221;&gt;&lt;?php echo $product_info['products_embed_movie'] ?&gt;&lt;/p&gt;<br />
&lt;?php     } ?&gt;</p>
<p style="padding-left: 30px;">
]]></content:encoded>
			<wfw:commentRss>http://blog.coderaustralia.com/php-programming/product-video-featured-video-for-oscommerce/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress A to Z Postslists</title>
		<link>http://blog.coderaustralia.com/php-programming/wordpress-a-to-z-postslists</link>
		<comments>http://blog.coderaustralia.com/php-programming/wordpress-a-to-z-postslists#comments</comments>
		<pubDate>Thu, 14 Oct 2010 13:15:35 +0000</pubDate>
		<dc:creator>nuwinda</dc:creator>
				<category><![CDATA[Php Programming]]></category>
		<category><![CDATA[Through WWW]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://blog.coderaustralia.com/?p=246</guid>
		<description><![CDATA[A-Z Posts Lists allows you to list posts on your wp posts or pages using &#91;atozpostlist&#93; shortcode. you can add list by categories. Purpose of this plugin is to show your posts in a a to z list. You can also include A-Z bar by using &#91;atozpostshowatoz&#93;. Use  &#91;atozpostshowatoz type=cap&#93; to show a to z&#8230;]]></description>
			<content:encoded><![CDATA[<p>A-Z Posts Lists allows you to list posts on your wp posts or pages using &#91;atozpostlist&#93; shortcode. you can add list by categories. Purpose of this plugin is to show your posts in a a to z list. You can also include A-Z bar by using &#91;atozpostshowatoz&#93;. Use  &#91;atozpostshowatoz type=cap&#93; to show a to z list in capital letters</p>
<h4>Handy Tools to work with this plugin</h4>
<p>you may need to use wp-hide post plugin to hide a-z page on front page.</p>
<p>you may also create new category and this plugin page to that category if you have small number of categories. So this page won&#8217;t display on the a-z list</p>
<p>Please add feeback so i can improve plugin</p>
<p><span id="more-246"></span></p>
<p><a href='#' onclick='javascript:window.open("/category/through-www/feed?download=2","Window1","menubar=no,width=400,height=200,toolbar=no, left="+((screen.width/2)-200)+", top="+((screen.height/2)-100));return false;' style="background:url('http://blog.coderaustralia.com/wp-content/plugins/download-manager/d24.png') no-repeat;padding:3px 12px 12px 28px;font:bold 10pt verdana;">Download</a><br><small style='margin-left:30px;'>Downloaded 272 times</small></p>
<p>Thank you</p>
<p>Have Fun</p>
<p>Snapshots</p>
<p>Admin Panel</p>
<p><a href="http://blog.coderaustralia.com/wp-content/uploads/2010/10/atozadmin_snapshot.jpg"  class="fancybox"><img class="alignnone size-full wp-image-260" title="atozadmin_snapshot" src="http://blog.coderaustralia.com/wp-content/uploads/2010/10/atozadmin_snapshot.jpg" alt="" width="815" height="556" /></a></p>
<p>Page Snapshoot</p>
<p><a href="http://blog.coderaustralia.com/wp-content/uploads/2010/10/atozonpost.jpg"  class="fancybox"><img class="alignnone size-full wp-image-261" title="atozonpost" src="http://blog.coderaustralia.com/wp-content/uploads/2010/10/atozonpost.jpg" alt="" width="815" height="555" /></a></p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/rJoI0DmPBQc?fs=1&amp;hl=en_GB"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/rJoI0DmPBQc?fs=1&amp;hl=en_GB" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><a href="http://blog.coderaustralia.com/nocategory/a-to-z-list">Try it here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.coderaustralia.com/php-programming/wordpress-a-to-z-postslists/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>WP-PHPBB Bridge</title>
		<link>http://blog.coderaustralia.com/php-programming/wp-phpbb-bridge</link>
		<comments>http://blog.coderaustralia.com/php-programming/wp-phpbb-bridge#comments</comments>
		<pubDate>Fri, 01 Oct 2010 22:14:32 +0000</pubDate>
		<dc:creator>nuwinda</dc:creator>
				<category><![CDATA[Php Programming]]></category>
		<category><![CDATA[Through WWW]]></category>
		<category><![CDATA[wordpress phpbb]]></category>
		<category><![CDATA[wordpress phpbb plugin]]></category>
		<category><![CDATA[wp-phpbb bridge]]></category>

		<guid isPermaLink="false">http://blog.coderaustralia.com/?p=232</guid>
		<description><![CDATA[First of all Thanks you for trying wordpress-phpBB bridge. Feel free to suggest your ideas on this blog about wp-phpbb bridge. About the wp-phpbb wp-phpbb is a wordpress plugin for make bridge between wordpress and phpBB forum. Once you install this plugin, you wordpress blog will act as a primary forum as a secondery. User&#8230;]]></description>
			<content:encoded><![CDATA[<p>First of all Thanks you for trying wordpress-phpBB bridge. Feel free to suggest your ideas on this blog about wp-phpbb bridge.</p>
<p><strong>About the wp-phpbb</strong></p>
<p>wp-phpbb is a wordpress plugin for make bridge between wordpress and phpBB forum. Once you install this plugin, you wordpress blog will act as a primary forum as a secondery. User need to login first time in order to he or she register on the phpBB.</p>
<p><strong>What is not</strong></p>
<p>wp-phpBB plugin treat wordpress as a primary and have nothing to do with phpBB. Alteration to phpBB code will not effect wordpress. So make sure you hide phpBB login, registration and profile chages.</p>
<p><strong>Installation</strong></p>
<p>Download Plugin from coderaustralia.com</p>
<p>Unzip wp_phpbb_bridge.zip to your wordpress plugins folder and activate from admin panel.</p>
<p>Click on WP-phpBB on admin menu and add information about your phpBB installation</p>
<p><strong>How to download</strong></p>
<p><a href='#' onclick='javascript:window.open("/category/through-www/feed?download=1","Window1","menubar=no,width=400,height=200,toolbar=no, left="+((screen.width/2)-200)+", top="+((screen.height/2)-100));return false;' style="background:url('http://blog.coderaustralia.com/wp-content/plugins/download-manager/d24.png') no-repeat;padding:3px 12px 12px 28px;font:bold 10pt verdana;">Download</a><br><small style='margin-left:30px;'>Downloaded 189 times</small></p>
<p>Please leave message or bugs so I can imporove it.</p>
<p>Thank you</p>
<p>Have fun</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.coderaustralia.com/php-programming/wp-phpbb-bridge/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Basic Search Engine Optimization</title>
		<link>http://blog.coderaustralia.com/php-programming/basic-search-engine-optimization</link>
		<comments>http://blog.coderaustralia.com/php-programming/basic-search-engine-optimization#comments</comments>
		<pubDate>Wed, 15 Sep 2010 01:41:28 +0000</pubDate>
		<dc:creator>nuwinda</dc:creator>
				<category><![CDATA[Php Programming]]></category>
		<category><![CDATA[Through WWW]]></category>
		<category><![CDATA[basic google SEO]]></category>
		<category><![CDATA[Basic search engine optimization]]></category>
		<category><![CDATA[Free SEO Tips]]></category>

		<guid isPermaLink="false">http://blog.coderaustralia.com/?p=3</guid>
		<description><![CDATA[Do you have a web site? so how can you list your site on the search engines and get more traffic to your site. It is pointless if you have a site and no SEO(search engine optimization). You don&#8217;t need to be a SEO Guru to list your site on the top of the search&#8230;]]></description>
			<content:encoded><![CDATA[<p>Do you have a web site? so how can you list your site on the search engines and get more traffic to your site. It is pointless if you have a site and no SEO(search engine optimization). You don&#8217;t need to be a SEO Guru to list your site on the top of the search engine listing. Just spent few hours a week on your site and search posibilities for marketing your site on the net.</p>
<p>Reason why you need your web site on the search engines is pepole need to hear what you have to say. This could be about your thoughts, your believes, your product or your services. Whatever the reason, if you have a site, search engin optimization is must.</p>
<p>This article will help you to list your site on popular search engines like google, yahoo and bing.</p>
<p>First add your site to search engines. below is link to google, yahoo and bing.</p>
<p>Yahoo : <a href="http://siteexplorer.search.yahoo.com/submit" target="_blank">http://siteexplorer.search.yahoo.com/submit</a></p>
<p>Google : <a href="http://www.google.com/addurl/?continue=/addurl" target="_blank">http://www.google.com/addurl/?continue=/addurl</a></p>
<p>bind : <a href="http://www.bing.com/webmaster/SubmitSitePage.aspx" target="_blank">http://www.bing.com/webmaster/SubmitSitePage.aspx</a></p>
<p>Search more search engines and add your site to more search enines. Most of the search engines give there listing free of charge.</p>
<p>Adding a site to search engine is not enough, Next you need to fix your web site pages so that search engines can easly grab data from your site.</p>
<h3><span id="more-3"></span><strong>Competitor positions</strong></h3>
<p>Search engines will examine your web page following areas, in order to list your web site in their search engine.</p>
<ul>
<li>Meta Title</li>
<li>Meta keywords</li>
<li>Meta description</li>
<li>Page title</li>
<li>Header tags</li>
<li>Bold text</li>
<li>Keyword weighting</li>
<li>Alt tags</li>
<li>Keywords prominence</li>
<li>File names</li>
<li>Link anchor text</li>
</ul>
<p>So when you design your web page make more attention to those parts of your web page. Search engines also give a significant weight on followings</p>
<ul>
<li>Link anchor text</li>
<li>PageRank</li>
<li>Quality of the site(This means proper standard when building a site{W3})</li>
<li>Relevance of the links</li>
<li>Number of other links on the page</li>
</ul>
<h3><strong>Your web page</strong></h3>
<p>Todays search engines use various types of elements on your web site.</p>
<p>So keep in mind that you are on your subject on all above elements. For example remove your site name from page title and include a best keyword that match your page. Use image alt tags to include best description. Make sure to include best match keywords for your meta tags, rather than using your site name or your name on it.</p>
<p>Another thing that matters most is how other web sites on the search engine sees your site. So make sure you have links from other web sites relevent to your sites topics. When doing this do not spam on other web site. Just check similer web sites. For example if you have a web site that offers Cakes, search for cake related sites insted of IT related sites. Search forums, blogs about cakes and add share you links with them.</p>
<p>Make a habit to include external style sheets or external javascripts, so search engines can search your page faster by omiting unnecessory scripting.</p>
<p><strong>About GOOGLE</strong></p>
<p>Todays search engines are too smart, if you use same keyword over and over in a pattern on your web pages, smart search engines like google can identify un-natural web pages and you may not rank your site on top listing. You can include same word with different ways. Google can find this same word in defferent ways.</p>
<p>For example:</p>
<ul>
<li>Search engine optimization</li>
<li>SEO</li>
<li>Natural Search engine optimization</li>
<li>Organic SEO</li>
<li>Search engine optimisation</li>
</ul>
<p>All above will give you same meaning. You don&#8217;t need to enter SEO in everywhere to rank on google. Google will understand what you mean by above listing, so Google know that your site is natural and more likely it will give you more relevance to your web page.</p>
<p>When searching your keywords it is easy to search on the net and copy keywords from other sites that list on the first page of the search engine. <strong>But don&#8217;t do this</strong>, it s a big mistake. Do some keyword research and then add them to your site. Do not target single word keyword. Use multi words such as insted of useing SEO use search engin optimization techniques. It is a good thing that you know your compatitors keywords but do not copy and paste them just use what best for your site.</p>
<p><a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=35291" target="_blank">Read this</a> for more information about google search engine optimization. Follow google web master guidlines to ensure you are doing perfect Google SEO.</p>
<p>Have Fun !!!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.coderaustralia.com/php-programming/basic-search-engine-optimization/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

