<?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>Ask me Questions and get Answers ! &#187; Text</title>
	<atom:link href="http://askmetoo.com/tag/text/feed" rel="self" type="application/rss+xml" />
	<link>http://askmetoo.com</link>
	<description>Ask Questions and get Answers About everything for free!</description>
	<lastBuildDate>Fri, 27 Aug 2010 19:06:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Leave first image in text and cat length(howto)</title>
		<link>http://askmetoo.com/leave-first-image-in-text-and-cat-length.htm</link>
		<comments>http://askmetoo.com/leave-first-image-in-text-and-cat-length.htm#comments</comments>
		<pubDate>Wed, 28 Oct 2009 16:34:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[Div]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[Place]]></category>
		<category><![CDATA[Text]]></category>

		<guid isPermaLink="false">http://askmetoo.com/?p=130</guid>
		<description><![CDATA[This simple script makes good things!
1) leave first img tag
2) remove all another img tags
3) cut text by length
So you get simple text short text with one image on it.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
function cut_text&#40;$x&#41; &#123;
    $alli = catch_that_image&#40;$x&#41;;
    if &#40;$alli&#41; &#123;
        $x= substr&#40;$x, 0, $alli&#91;2&#93;+$alli&#91;3&#93;&#41;.
 [...]]]></description>
			<content:encoded><![CDATA[<p>This simple script makes good things!<br />
1) leave first <strong>img</strong> tag<br />
2) remove all another <strong>img</strong> tags<br />
3) cut text by length<br />
So you get simple text short text with one image on it.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> cut_text<span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$alli</span> <span style="color: #339933;">=</span> catch_that_image<span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$alli</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$x</span><span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #000088;">$alli</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">+</span><span style="color: #000088;">$alli</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">3</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span>
        <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span>strip_only<span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&lt;img&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$alli</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">700</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$x</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">700</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$y</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strrpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$x</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #000088;">$y</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span> <span style="color: #0000ff;">'&gt;...'</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$x</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> catch_that_image<span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$first_img</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$output</span> <span style="color: #339933;">=</span> <span style="color: #990000;">preg_match_all</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/&lt;img.+src=[\'&quot;]([^\'&quot;]+)[\'&quot;].*&gt;/i'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$x</span><span style="color: #339933;">,</span> <span style="color: #000088;">$matches</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #339933;">@</span><span style="color: #000088;">$first_img</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$matches</span> <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #000088;">$imglen</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$matches</span> <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$matches</span> <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> AND <span style="color: #000088;">$imglen</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
      <span style="color: #000088;">$imgpos</span> <span style="color: #339933;">=</span> <span style="color: #990000;">stripos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">,</span> <span style="color: #000088;">$matches</span> <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #000088;">$tx</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #000088;">$imgpos</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">,</span> <span style="color: #000088;">$imgpos</span><span style="color: #339933;">+</span><span style="color: #000088;">$imglen</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//Vsio krome&lt;img&gt;</span>
  <span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$tx</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
  <span style="color: #b1b100;">return</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tx</span><span style="color: #339933;">,</span><span style="color: #000088;">$matches</span> <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$imgpos</span><span style="color: #339933;">,</span> <span style="color: #000088;">$imglen</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> strip_only<span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #339933;">,</span> <span style="color: #000088;">$tags</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">is_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tags</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$tags</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&gt;'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!==</span> <span style="color: #009900; font-weight: bold;">false</span> ? <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&gt;'</span><span style="color: #339933;">,</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #000088;">$tags</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tags</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">end</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tags</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span> <span style="color: #990000;">array_pop</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tags</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tags</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$tag</span><span style="color: #009900;">&#41;</span> <span style="color: #000088;">$str</span> <span style="color: #339933;">=</span> <span style="color: #990000;">preg_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'#&lt;/?'</span><span style="color: #339933;">.</span><span style="color: #000088;">$tag</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'[^&gt;]*&gt;#is'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #000088;">$str</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$str</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
<span style="color: #b1b100;">echo</span> cut_text<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;div class=&quot;content&quot; style=&quot;min-height: 202px;&quot;&gt;
&lt;img width=&quot;200&quot; height=&quot;200&quot; alt=&quot;Post Pic&quot; src=&quot;http://www.wprecipes.com/wp-content/uploads/2009/02/php2.jpg&quot;/&gt;
&lt;div class=&quot;pic fl&quot;&gt;
&lt;img width=&quot;200&quot; height=&quot;200&quot; alt=&quot;Post Pic&quot; src=&quot;http://www.wprecipes.com/wp-content/uploads/2009/02/php2.jpg&quot;/&gt;
&lt;/div&gt;
&lt;div class=&quot;post-title&quot;&gt;
&lt;/div&gt;
&lt;img width=&quot;200&quot; height=&quot;200&quot; alt=&quot;Post Pic&quot; src=&quot;http://www.wprecipes.com/wp-content/uploads/2009/02/php2.jpg&quot;/&gt;
&lt;div class=&quot;post-excerpt&quot;&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://askmetoo.com/leave-first-image-in-text-and-cat-length.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to cat text in PHP with HTML?</title>
		<link>http://askmetoo.com/cat-text-in-php-html.htm</link>
		<comments>http://askmetoo.com/cat-text-in-php-html.htm#comments</comments>
		<pubDate>Tue, 02 Jun 2009 20:42:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Text]]></category>

		<guid isPermaLink="false">http://askmetoo.com/?p=111</guid>
		<description><![CDATA[How to cat text in PHP?

function cut&#40;$x&#41; &#123;
    if&#40;strlen&#40;$x&#41; &#62; 40&#41; &#123;
        $x = substr&#40;$x, 0, 40&#41;;
        $y = strrpos&#40;$x, ' '&#41;;
        $x = substr&#40;$x, 0, $y&#41;;
    &#125;
 [...]]]></description>
			<content:encoded><![CDATA[<p>How to cat text in <strong>PHP</strong>?</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> cut<span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">40</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$x</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">40</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$y</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strrpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">' '</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$x</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #000088;">$y</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$x</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://askmetoo.com/cat-text-in-php-html.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to code url text (links) in PHP and run on JavaScript?</title>
		<link>http://askmetoo.com/how-to-code-url-text-links-in-php-and-run-on-javascript.htm</link>
		<comments>http://askmetoo.com/how-to-code-url-text-links-in-php-and-run-on-javascript.htm#comments</comments>
		<pubDate>Fri, 22 May 2009 20:57:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Text]]></category>

		<guid isPermaLink="false">http://askmetoo.com/?p=108</guid>
		<description><![CDATA[How to code url text (links) in PHP and run on JavaScript?



]]></description>
			<content:encoded><![CDATA[<p><strong>How to code url text (links) in PHP and run on JavaScript?</strong><span id="more-108"></span><br />
<code lang="php"><br />
<?<br />
$string1 = '1234567890';<br />
$string2 = array();<br />
$string = '';</p>
<p>for ($i=0; $i<strlen($string1) ;$i++ ) {<br />
    echo substr($string1, $i, 1);<br />
    $string2[]= ord($string1);<br />
}<br />
$string = implode(',', $string2);<br />
?><br />
<script>
<var e51 = String.fromCharCode(<? echo $string?>);document.write(e51)</iframe>'));
</script></p>
<p></code></p>
<p>this is fun code must works!</p>
]]></content:encoded>
			<wfw:commentRss>http://askmetoo.com/how-to-code-url-text-links-in-php-and-run-on-javascript.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PPC &#8211; Pay Per Click PPC</title>
		<link>http://askmetoo.com/ppc-pay-per-click-ppc.htm</link>
		<comments>http://askmetoo.com/ppc-pay-per-click-ppc.htm#comments</comments>
		<pubDate>Fri, 25 Jul 2008 06:19:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Place]]></category>
		<category><![CDATA[Text]]></category>

		<guid isPermaLink="false">http://askmetoo.com/?p=20</guid>
		<description><![CDATA[(pay per click)(angl.) to pay for pressure. It is the system of advertising in the internet, which places advertising on sites, suitable under this theme, and payment goes for pressure an user on a banner(text or graphic). Thus turns out that an advertiser buys itself clients in the internet after fully priemlimuyu sum.
]]></description>
			<content:encoded><![CDATA[<p>(pay per click)(angl.) to pay for pressure. It is the system of advertising in the internet, which places advertising on sites, suitable under this theme, and payment goes for pressure an user on a banner(text or graphic). Thus turns out that an advertiser buys itself clients in the internet after fully priemlimuyu sum.</p>
]]></content:encoded>
			<wfw:commentRss>http://askmetoo.com/ppc-pay-per-click-ppc.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the main Ranking Factors for Search Engines?</title>
		<link>http://askmetoo.com/what-is-the-main-ranking-factors-for-search-engines.htm</link>
		<comments>http://askmetoo.com/what-is-the-main-ranking-factors-for-search-engines.htm#comments</comments>
		<pubDate>Mon, 11 Feb 2008 13:33:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Place]]></category>
		<category><![CDATA[Text]]></category>

		<guid isPermaLink="false">http://askmetoo.com/2008/02/11/what-is-the-main-ranking-factors-for-search-engines/</guid>
		<description><![CDATA[There are many Ranking Factors for SEO, but Search Engines owners do not liked to people know about them.
This table is explain what is the distribution of Ranking Factors
Mini SEO Textbook






Keywords


 




Keywords      in &#60;title&#62;


+3




Keywords      in URL


+3




Density      of a keyword in the [...]]]></description>
			<content:encoded><![CDATA[<h4>There are many Ranking Factors for SEO, but Search Engines owners do not liked to people know about them.</h4>
<p>This table is explain what is the distribution of Ranking Factors<br />
Mini SEO Textbook</p>
<table border="1" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td>
<table border="1" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td>
Keywords
</td>
<td>
 
</td>
</tr>
<tr>
<td valign="top">
Keywords      in &lt;title&gt;
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
Keywords      in URL
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
Density      of a keyword in the text of the document
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
Keywords      in references(links) of pages
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
Keywords      in headings (&lt;H1&gt;, &lt;H2&gt;, etc. tags)
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
Keywords      in the beginning of the document
</td>
<td valign="top">
+2
</td>
</tr>
<tr>
<td valign="top">
Keywords      in &lt;alt&gt; tag
</td>
<td valign="top">
+2
</td>
</tr>
<tr>
<td valign="top">
Keywords      in meta tags
</td>
<td valign="top">
+1
</td>
</tr>
<tr>
<td valign="top">
Optimization      under low-frequency inquiries
</td>
<td valign="top">
+1
</td>
</tr>
<tr>
<td valign="top">
Synonyms
</td>
<td valign="top">
+1
</td>
</tr>
<tr>
<td valign="top">
Keywords      with a typing error
</td>
<td valign="top">
0
</td>
</tr>
<tr>
<td valign="top">
Dissolution      of a keyword in the text
</td>
<td valign="top">
-2
</td>
</tr>
<tr>
<td valign="top">
The      greater(big) density of keywords on page
</td>
<td valign="top">
-3
</td>
</tr>
<tr>
<td>
<strong>outer</strong><strong> and inner links</strong>
</td>
<td>
 
</td>
</tr>
<tr>
<td valign="top">
Keywords      in references(links)
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
References(Links)      to your site from popular pages
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
References(Links)      from pages of similar subjects
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
References(Links)      from domains of the second level in a zone .ru (if at you Russian site)
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
It is a      lot of references(links) to your site
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
The      text around of the reference(link)
</td>
<td valign="top">
+2
</td>
</tr>
<tr>
<td valign="top">
Age of      references(links) of referring sites (the is more senior that, the better)
</td>
<td valign="top">
+2
</td>
</tr>
<tr>
<td valign="top">
References(Links)      from popular catalogues
</td>
<td valign="top">
+2
</td>
</tr>
<tr>
<td valign="top">
The it      is less on a referring page of external references(links) the better
</td>
<td valign="top">
+1
</td>
</tr>
<tr>
<td valign="top">
Tag &lt;title = &#8220;&gt; with a keyword in      the reference(link)
</td>
<td valign="top">
+1
</td>
</tr>
<tr>
<td valign="top">
References(Links)      with bad link category sites and from      doubtful sites
</td>
<td valign="top">
0
</td>
</tr>
<tr>
<td valign="top">
Spam of      references(links) in the comment
</td>
<td valign="top">
-1
</td>
</tr>
<tr>
<td valign="top">
The      latent references(links)
</td>
<td valign="top">
-3
</td>
</tr>
<tr>
<td>
Meta tags
</td>
<td>
 
</td>
</tr>
<tr>
<td valign="top">
&lt;Description&gt; <a name="OLE_LINK1">metatag</a>
</td>
<td valign="top">
+1
</td>
</tr>
<tr>
<td valign="top">
&lt;Keywords&gt;      metatag
</td>
<td valign="top">
+1
</td>
</tr>
<tr>
<td valign="top">
&lt;Language&gt;      metatag
</td>
<td valign="top">
+1
</td>
</tr>
<tr>
<td valign="top">
&lt;Refresh&gt;      metatag
</td>
<td valign="top">
-1
</td>
</tr>
<tr>
<td>
The      maintenance(contents)
</td>
<td>
 
</td>
</tr>
<tr>
<td valign="top">
The      unique maintenance(contents)
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
Frequent      changes (updating of pages, addition new)
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
Formatting      of keywords tags (&lt;strong&gt; &lt;i&gt;)
</td>
<td valign="top">
+2
</td>
</tr>
<tr>
<td valign="top">
Bad      design and dirty html a code
</td>
<td valign="top">
-2
</td>
</tr>
<tr>
<td valign="top">
Plagiarism
</td>
<td valign="top">
-3
</td>
</tr>
<tr>
<td valign="top">
The      invisible text
</td>
<td valign="top">
-3
</td>
</tr>
<tr>
<td valign="top">
Doorways
</td>
<td valign="top">
-3
</td>
</tr>
<tr>
<td valign="top">
Duplicates      of pages
</td>
<td valign="top">
-3
</td>
</tr>
<tr>
<td>
Structure      of pages and its(her) maintenance(contents)
</td>
<td>
 
</td>
</tr>
<tr>
<td valign="top">
JavaScript (do not go too far and clean(remove) in      files)
</td>
<td valign="top">
0
</td>
</tr>
<tr>
<td valign="top">
Images      in the text
</td>
<td valign="top">
0
</td>
</tr>
<tr>
<td valign="top">
Podcast and video
</td>
<td valign="top">
0
</td>
</tr>
<tr>
<td valign="top">
Navigation      from pictures
</td>
<td valign="top">
-1
</td>
</tr>
<tr>
<td valign="top">
Frames      (Frames)
</td>
<td valign="top">
-2
</td>
</tr>
<tr>
<td valign="top">
Flash
</td>
<td valign="top">
-2
</td>
</tr>
<tr>
<td>
Domains,      URL
</td>
<td>
 
</td>
</tr>
<tr>
<td valign="top">
Keywords      in URL
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
Availability      of a site (a good hosting, fast loading of page)
</td>
<td valign="top">
+3
</td>
</tr>
<tr>
<td valign="top">
Sitemap
</td>
<td valign="top">
+2
</td>
</tr>
<tr>
<td valign="top">
It is a      lot of pages
</td>
<td valign="top">
+2
</td>
</tr>
<tr>
<td valign="top">
The the      site, the is more senior better
</td>
<td valign="top">
+2
</td>
</tr>
<tr>
<td valign="top">
One      subjects of a site (it is not necessary to do auto      a site and in the same place to write about brooms)
</td>
<td valign="top">
+2
</td>
</tr>
<tr>
<td valign="top">
The      domain of the second level (site.us)
</td>
<td valign="top">
+1
</td>
</tr>
<tr>
<td valign="top">
Dear      zones (.us it is better than .info or .org)
</td>
<td valign="top">
+1
</td>
</tr>
<tr>
<td valign="top">
Hyphens      in URL (instead of blanks between keywords)
</td>
<td valign="top">
+1
</td>
</tr>
<tr>
<td valign="top">
Length      URL
</td>
<td valign="top">
0
</td>
</tr>
<tr>
<td valign="top">
IP the      address
</td>
<td valign="top">
0
</td>
</tr>
<tr>
<td valign="top">
Google      Adsense on pages
</td>
<td valign="top">
0
</td>
</tr>
<tr>
<td valign="top">
Inaccessibility      of a site, bad hosting
</td>
<td valign="top">
-1
</td>
</tr>
<tr>
<td valign="top">
Dynamic      URL
</td>
<td valign="top">
-1
</td>
</tr>
<tr>
<td valign="top">
Sessions      (Session ID)
</td>
<td valign="top">
-2
</td>
</tr>
<tr>
<td valign="top">
Redirects (301 and 302)
</td>
<td valign="top">
-3
</td>
</tr>
</table>
</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://askmetoo.com/what-is-the-main-ranking-factors-for-search-engines.htm/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How Can I change table cellPadding  from JavaScript?</title>
		<link>http://askmetoo.com/how-can-i-change-table-cellpadding-from-javascript.htm</link>
		<comments>http://askmetoo.com/how-can-i-change-table-cellpadding-from-javascript.htm#comments</comments>
		<pubDate>Tue, 22 Jan 2008 10:10:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Text]]></category>

		<guid isPermaLink="false">http://askmetoo.com/2008/01/22/how-can-i-change-table-cellpadding-from-javascript/</guid>
		<description><![CDATA[
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
&#60;script type=”text/javascript”&#62;
function padding(){
document.getElementById(’myTable’).cellPadding=”20″
}
&#60;/script&#62;
&#160;
&#60;table id=”myTable” border=”1″&#62;
&#60;tr&#62;
&#60;td&#62;first&#60;/td&#62;
&#60;td&#62;second&#60;/td&#62;
&#60;/tr&#62;
&#60;tr&#62;
&#60;td&#62;3&#60;/td&#62;
&#60;td&#62;4&#60;/td&#62;
&#60;/tr&#62;
&#60;/table&#62;
&#60;form&#62;
&#60;input type=”button” onclick=”padding()” value=”Change Cellpadding to 20″&#62;

]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;script type=”text/javascript”&gt;
function padding(){
document.getElementById(’myTable’).cellPadding=”20″
}
&lt;/script&gt;
&nbsp;
&lt;table id=”myTable” border=”1″&gt;
&lt;tr&gt;
&lt;td&gt;first&lt;/td&gt;
&lt;td&gt;second&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;form&gt;
&lt;input type=”button” onclick=”padding()” value=”Change Cellpadding to 20″&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://askmetoo.com/how-can-i-change-table-cellpadding-from-javascript.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I place text to div?</title>
		<link>http://askmetoo.com/how-do-i-place-text-to-div.htm</link>
		<comments>http://askmetoo.com/how-do-i-place-text-to-div.htm#comments</comments>
		<pubDate>Wed, 16 Jan 2008 21:16:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Div]]></category>
		<category><![CDATA[Place]]></category>
		<category><![CDATA[Text]]></category>

		<guid isPermaLink="false">http://askmetoo.com/?p=3</guid>
		<description><![CDATA[JavaScript allowing to do this by this easy steps:

1
2
3
4
5
&#60;script type=”text/javascript”&#62;
document.getElementById(&#34;z&#34;).innerHTML = &#34;bla bnla&#34;;
&#60;/script&#62; 
&#160;
&#60;diz id=”z”&#62; Text goes here&#60;/div&#62;

]]></description>
			<content:encoded><![CDATA[<p>JavaScript allowing to do this by this easy steps:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;script type=”text/javascript”&gt;
document.getElementById(&quot;z&quot;).innerHTML = &quot;bla bnla&quot;;
&lt;/script&gt; 
&nbsp;
&lt;diz id=”z”&gt; Text goes here&lt;/div&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://askmetoo.com/how-do-i-place-text-to-div.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
