<?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>Webscriptz.be &#187; tutorials</title>
	<atom:link href="http://webscriptz.be/topics/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://webscriptz.be</link>
	<description></description>
	<lastBuildDate>Sat, 17 Apr 2010 12:45:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Annoyed&#8230;with coding</title>
		<link>http://webscriptz.be/2010/02/22/annoyed-with-coding/259</link>
		<comments>http://webscriptz.be/2010/02/22/annoyed-with-coding/259#comments</comments>
		<pubDate>Sun, 21 Feb 2010 23:39:23 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[annoyed]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[yii]]></category>
		<category><![CDATA[yii framework]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=259</guid>
		<description><![CDATA[I&#8217;ve been coding away all week, that is between my other jobs at home In all my &#8216;wisdom&#8217; and persistence i made a small app with Yii which stores data in an array and serializes it into a db, and a basic CRUD, a proof of concept to see if the framework was capable of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been coding away all week, that is between my other jobs at home <img src='http://webscriptz.be/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>In all my &#8216;wisdom&#8217; and persistence i made a small app with Yii which stores data in an array and serializes it into a db, and a basic CRUD, a proof of concept to see if the framework was capable of doing this <span style="text-decoration: line-through;">and in the fastest way possible.</span></p>
<p>No problem so far, getting it is simple, but apparently you Yii doesn&#8217;t permit everything. So you need a $temp variable to store the model data in, suffice to say that it isn&#8217;t really the shortest route to take nor in my opinion the fastest bus alas I have to do with it. This little app of not more then a 60 lines of code took me four days, four damn days to figure out the error,  honestly if we have methods to &#8216;save space&#8217; in your coding why not permit them?</p>
<p>I&#8217;m not going to bother everybody with my nagging so, I&#8217;ll stop here.</p>
<p><a href="http://www.yiiframework.com/forum/index.php?/topic/7409-ar-array-problem/">For those who want to see the topic on the yii forums.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2010/02/22/annoyed-with-coding/259/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YII framework configuration</title>
		<link>http://webscriptz.be/2009/12/20/yii-framework-configuration/253</link>
		<comments>http://webscriptz.be/2009/12/20/yii-framework-configuration/253#comments</comments>
		<pubDate>Sun, 20 Dec 2009 22:47:49 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[yii]]></category>
		<category><![CDATA[yii framework]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=253</guid>
		<description><![CDATA[I&#8217;m toying with the Yii Framework for some time now and even if i cost me a lot of anger and frustration in the beginning I&#8217;m starting to like it more and more, alas I do have to say that the documentation isn&#8217;t always that clear and for someone who begins or who&#8217;ll write some [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m toying with the Yii Framework for some time now and even if i cost me a lot of anger and frustration in the beginning I&#8217;m starting to like it more and more, alas I do have to say that the documentation isn&#8217;t always that clear and for someone who begins or who&#8217;ll write some large applications the configuration file can be a hassle so here&#8217;s my solution:</p>
<blockquote><p>Brake down the configuration file in multiple files, this will give you some speed disadvantage and some will  saying that I&#8217;m raping Yii framework purpose for speed but at least to me it seems more clear</p></blockquote>
<p>This is the protected.config/main.php</p>
<pre class="brush:[php]">
dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
'name'=&gt;'WEBSITENAME',
'modules'=&gt;array(
'users'=&gt;array(
//sub modules in the module users
'modules'=&gt;array(
'messaging',
'profile',
'dashboard',
)
),
'about',
'forums',
),
// preloading 'log' component active loading
'preload'=&gt;array('log'),

// autoloading model and component classes lazy loading
// I make the difference between CformModel and CActiveRecord
'import'=&gt;array(
'application.models.*',
'application.models.forms.*',
'application.models.database.*',
),

// application components
'components'=&gt;array(
// enable cookie-based authentication
'user'=&gt;array('allowAutoLogin'=&gt;true),

// data relinquished to database.php
// for easy access and usability as also for the future
// installation procedure, it's less to write to a file
'db'=&gt;include(dirname(__FILE__).'/database.php'),

// for a better overview we exculded url routes to a seperate file
'urlManager'=&gt;include(dirname(__FILE__).'/routes.php'),

//authentication component needs data from db for CdbConnection
'authManager'=&gt;array(
'class'=&gt;'CDbAuthManager',
'connectionID'=&gt;'db',
'defaultRoles'=&gt;array('authenticated', 'guest'),
),

//security measures
'request'=&gt;array(
'enableCsrfValidation'=&gt;true,
'enableCookieValidation'=&gt;true,
),
),

// application-level parameters that can be accessed
// using Yii::app()-&gt;params['paramName']
// uncomment the following if you want static params in the application
//'params'=&gt;array(include(dirname(__FILE__).'/params.php'))
);</pre>
<p>database.php</p>
<pre class="brush:[php]">
'CDbConnection',
'connectionString'=&gt;'mysql:host=localhost;dbname=mysql',
//'connectionString'=&gt;'pgsql:host=localhost;port=5432;dbname=mysql',
'username' =&gt; 'root',
'password' =&gt; '',
);
?&gt;
</pre>
<p>routes.php</p>
<pre class="brush:[php]">
'path', // path or get
'urlSuffix' =&gt; '', //.html .whateverextentionyouwant
'showScriptName' =&gt; true,
'rules'=&gt;array(
'users/recovery/perimeterSecurity/'=&gt;'users/recovery/perimeterSecurity',
),
);
?&gt;
</pre>
<p>param.php</p>
<pre class="brush:[php]">//nothing in it at the moment</pre>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/12/20/yii-framework-configuration/253/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Codeigniter Redirect</title>
		<link>http://webscriptz.be/2009/06/30/codeigniter-redirect/231</link>
		<comments>http://webscriptz.be/2009/06/30/codeigniter-redirect/231#comments</comments>
		<pubDate>Tue, 30 Jun 2009 19:45:08 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[CI function]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=231</guid>
		<description><![CDATA[redirect() Does a &#8220;header redirect&#8221; to the local URI specified. Just like other functions in this helper, this one is designed to redirect to a local URL within your site. You will not specify the full site URL, but rather simply the URI segments to the controller you want to direct to. The function will [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<h2>redirect()</h2>
<p>Does a &#8220;header redirect&#8221; to the local URI specified. Just like other functions in this helper, this one is designed to redirect to a local URL within your site.  You will <strong>not</strong> specify the full site URL, but rather simply the URI segments to the controller you want to direct to. The function will build the URL based on your config file values.</p>
<p>The optional second parameter allows you to choose between the &#8220;location&#8221; method (default) or the &#8220;refresh&#8221; method. Location is faster, but on Windows servers it can sometimes be a problem. The optional third parameter allows you to send a specific HTTP Response Code &#8211; this could be used for example to create 301 redirects for search engine purposes. The default Response Code is 302. The third parameter is <em>only</em> available with &#8216;location&#8217; redirects, and not &#8216;refresh&#8217;. Examples:</p>
<p><code>if ($logged_in == FALSE)<br />
{<br />
redirect('/login/form/', 'refresh');<br />
}</p>
<p>// with 301 redirect<br />
redirect('/article/13', 'location', 301);</code></p></blockquote>
<p>This was the excerpt from the codeigniter userguide but what they don&#8217;t really tell is the essential:</p>
<p>redirect(&#8216;controller/function/param&#8217;, &#8216;refresh&#8217;);</p>
<blockquote></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/06/30/codeigniter-redirect/231/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agile Application with php &amp; mySQL</title>
		<link>http://webscriptz.be/2009/03/28/agile-application-with-php-mysql/227</link>
		<comments>http://webscriptz.be/2009/03/28/agile-application-with-php-mysql/227#comments</comments>
		<pubDate>Sat, 28 Mar 2009 19:35:14 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[dbal]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[my]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorisql]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=227</guid>
		<description><![CDATA[I'm working on a website system an facing this problem where and how to store my configurations in the database. ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on a website system an facing this problem where and how to store my configurations in the database.  So you want to store your configuration vars in a configuration table in the database, that&#8217;s great and fun to do too.</p>
<p>Why do it?</p>
<p>Your application becomes easier to update to a newer version, most of the time, when creating a newer version you will strip &#8211; change &#8211; add some variables for configurations, with a database it&#8217;s easier and you (or the admin) can change things on the fly.</p>
<p>How?</p>
<p>One or more tables like this:</p>
<p><code><br />
Mysql table:<br />
+------------------+<br />
|       config           |<br />
+------------------+<br />
|  id                      |<br />
|  name                 |<br />
|  value                 |<br />
+------------------+<br />
</code></p>
<p>If you want you can add an selection column to get only the ones needed for that function but this is the best way when being in a development environment I think</p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/03/28/agile-application-with-php-mysql/227/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CodeIgniter the views and .htaccess</title>
		<link>http://webscriptz.be/2009/03/14/codeigniter-and-views-and-htaccess/219</link>
		<comments>http://webscriptz.be/2009/03/14/codeigniter-and-views-and-htaccess/219#comments</comments>
		<pubDate>Sat, 14 Mar 2009 20:23:53 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[Ci]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[views]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=219</guid>
		<description><![CDATA[I must admit that I not a huge fan of Frameworks and Patterns because: A) They make things complicated B) Subject you to some nasty code stuff and rules C) Because templating and Frameworks can be water and fire. Codeigniter on the opposite has some advantage on it side for the templating stuff. This is [...]]]></description>
			<content:encoded><![CDATA[<p>I must admit that I not a huge fan of Frameworks and Patterns because:</p>
<blockquote><p>A) They make things complicated</p>
<p>B) Subject you to some nasty code stuff and rules</p>
<p>C) Because templating and Frameworks can be water and fire.</p></blockquote>
<p>Codeigniter on the opposite has some advantage on it side for the templating stuff. This is really a short explanation for a common problem in other framework.</p>
<p>What to do if you want a nice folder structure or have different template styles, remember this is just a basic thing which happen to work in CI 1.7.</p>
<p><code><br />
function index(){<br />
$this-&gt;load-&gt;view('Themename/news/index);<br />
}</code></p>
<p>Just add some slashes an it works so normally it should work if you would make an adaptation for themes too with a variable in it.</p>
<p>The next thing was kind of hard to find on the web so let me share it. It&#8217;s for when you develop with CI and your not working in the root directory of your server.</p>
<p><code><br />
DirectoryIndex index.php<br />
RewriteEngine on<br />
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA] </code></p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/03/14/codeigniter-and-views-and-htaccess/219/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restful_authentication</title>
		<link>http://webscriptz.be/2008/08/20/restful_authentication/98</link>
		<comments>http://webscriptz.be/2008/08/20/restful_authentication/98#comments</comments>
		<pubDate>Wed, 20 Aug 2008 19:41:10 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://webscriptz.be/2008/08/20/restful_authentication/</guid>
		<description><![CDATA[This is probably one of the easiest authantication plugins for rails. I&#8217;m learning it at the moment and it isn&#8217;t easy, the biggest obstacle is the tutorials that often are but available for rails 1.x.x. Railscasts &#8211; restful_authentication.]]></description>
			<content:encoded><![CDATA[<p>This is probably one of the easiest authantication plugins for rails. I&#8217;m learning it at the moment and it isn&#8217;t easy, the biggest obstacle is the tutorials that often are but available for rails 1.x.x.</p>
<p><a href="http://railscasts.com/episodes/67-restful-authentication">Railscasts &#8211; restful_authentication</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2008/08/20/restful_authentication/98/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to build and customize your own PBX with Asterisk</title>
		<link>http://webscriptz.be/2008/08/19/how-to-build-and-customize-your-own-pbx-with-asterisk/93</link>
		<comments>http://webscriptz.be/2008/08/19/how-to-build-and-customize-your-own-pbx-with-asterisk/93#comments</comments>
		<pubDate>Tue, 19 Aug 2008 08:31:20 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[call]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pbx]]></category>
		<category><![CDATA[telephone]]></category>

		<guid isPermaLink="false">http://webscriptz.be/2008/08/19/feature-how-to-build-and-customize-your-own-pbx-with-asterisk-updated-geekcom/</guid>
		<description><![CDATA[Linux can do many thing, it can also be a telephone central which is quit cool. Geek.com has a nice article about it and it&#8217;s fun to experiment with Feature: How to build and customize your own PBX with Asterisk &#8211; UPDATED &#124; Geek.com.]]></description>
			<content:encoded><![CDATA[<p>Linux can do many thing, it can also be a telephone central which is quit cool. Geek.com has a nice article about it and it&#8217;s fun to experiment with</p>
<p><a href="http://www.geek.com/feature-how-to-build-and-customize-your-own-pbx-with-asterisk-20080812/">Feature: How to build and customize your own PBX with Asterisk &#8211; UPDATED | Geek.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2008/08/19/how-to-build-and-customize-your-own-pbx-with-asterisk/93/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpbb3 adsense input</title>
		<link>http://webscriptz.be/2008/08/13/phpbb3-adsense-input/73</link>
		<comments>http://webscriptz.be/2008/08/13/phpbb3-adsense-input/73#comments</comments>
		<pubDate>Wed, 13 Aug 2008 21:47:26 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=73</guid>
		<description><![CDATA[I&#8217;ve solved the problems with adsense in the template files, the page I found truly explained a lot, apparently I&#8217;ve inputted the script into the wrong lines of code, odd as it seems. To the website]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve solved the problems with adsense in the template files, the page I found truly explained a lot, apparently I&#8217;ve inputted the script into the wrong lines of code, odd as it seems.</p>
<p><a href="http://www.phpbb.com/kb/article/advertisements-in-phpbb3/">To the website</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2008/08/13/phpbb3-adsense-input/73/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Images and SEO</title>
		<link>http://webscriptz.be/2008/08/13/images-and-seo/71</link>
		<comments>http://webscriptz.be/2008/08/13/images-and-seo/71#comments</comments>
		<pubDate>Wed, 13 Aug 2008 19:30:53 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[optimalisation]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=71</guid>
		<description><![CDATA[Pictures are useless content on a web page and o one of the most commonly know seo tips for images is that you have to use the &#60;img scr="" alt="your keywords here but not more then 160 characters"&#62; Why? Easy, crawlers read &#8211; scan text and don&#8217;t have eyes so they cannot see the image [...]]]></description>
			<content:encoded><![CDATA[<p>Pictures are useless content on a web page and o one of the most commonly know seo tips for images is that you have to use the<code> &lt;img scr="" alt="your keywords here but not more then 160 characters"&gt;<br />
</code><br />
<strong> Why?</strong></p>
<p>Easy, crawlers read &#8211; scan text and don&#8217;t have eyes so they cannot see the image and threat it are some sort of whitespace unless you use your alt tag and also if the image isn&#8217;t available at the time a regular user still knows what what the image is about.</p>
<p>Also everything that we may do can be exploited for bad use and so ver the years techniques have been refined to abuse this fact and webmasters have ’stuffed’ their ‘alt tags’ with everything they could think of &#8211; Google has, however,  found ways to combat this and treats such strategies as spamming their bots &#8211; Sill it&#8217;s legal but be careful don&#8217;t go of spamming, one or two well placed words are more then enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2008/08/13/images-and-seo/71/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manipulation of search engines (SEO)</title>
		<link>http://webscriptz.be/2008/08/13/manipulation-of-search-engines-seo/69</link>
		<comments>http://webscriptz.be/2008/08/13/manipulation-of-search-engines-seo/69#comments</comments>
		<pubDate>Wed, 13 Aug 2008 19:21:09 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[search engine optimalisation]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=69</guid>
		<description><![CDATA[This is the basic of search engine optimization (SEO). It basically is the list of what you may do and what you better don&#8217;t do because well it can get you kicked out of the index. Google, yahoo and others aren&#8217;t to happy that you fool them. Basicaly all those things are logic but I [...]]]></description>
			<content:encoded><![CDATA[<p>This is the basic of search engine optimization (SEO). It basically is the list of what you may do and what you better don&#8217;t do because well it can get you kicked out of the index. Google, yahoo and others aren&#8217;t to happy that you fool them.</p>
<p>Basicaly all those things are logic but I have to start somewhere.<br />
<strong>You may:</strong></p>
<ul>
<li>Create a website which contains meta tags, text (useful or not), pics, and keywords that help improve your ranking in the index of the engines.</li>
<li>Use keywords that relate to the subject which your site treats.</li>
<li>If you do links, try to have links related to your site.</li>
<li>Build traffic by ad campaigns, link exchange, advertising in other media if really needed (but you can do without that and just use forums and others to promote your site</li>
<li>Submit  search engines manually, rather than waiting for them to pick up your site, you can find different and free services to mass-submit your site to search engines.</li>
<li>Use the tools engines five you like google (sitemaps(free), adsense).</li>
</ul>
<p><strong>You may not:</strong></p>
<ul>
<li>Trick crawlers by embedding hidden content, tags, keywords in your web site. It will get you banned from the index.</li>
<li>Artificially generate links to your site from sites that don&#8217;t relate to yours and also doorway pages, pages created to trap the crawler and redirecting him to you site once again.s. A good general rule of thumb is that you should submit your.</li>
<li>Don&#8217;t submit your site to often to the index manually 4 times a year is more then enough for the search engine to get hold of your site. Not directly one after an other.</li>
<li>Don&#8217;t resubmit your site just because you think that it&#8217;s the best in it&#8217;s category or something like that. If you open a website on flowers, don&#8217;t think it will be the first on the search page when you type flowers because well their are basically millions of sites that treat or contain the word &#8216;flower&#8217;. (and now mine does to btw.)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2008/08/13/manipulation-of-search-engines-seo/69/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
