<?xml version="1.0" encoding="iso-8859-9"?>
<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>CODE PROJECT &#124; php, codeigniter, smarty, design patterns &#187; html</title>
	<atom:link href="http://code.internet.com.tr/etiket/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://code.internet.com.tr</link>
	<description>bir gün bir gün bir çocuk</description>
	<lastBuildDate>Sun, 31 Jan 2010 11:11:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>parse sınıfı</title>
		<link>http://code.internet.com.tr/parse-sinifi/</link>
		<comments>http://code.internet.com.tr/parse-sinifi/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 22:24:14 +0000</pubDate>
		<dc:creator>Emre Çevik</dc:creator>
				<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[proje]]></category>
		<category><![CDATA[description]]></category>
		<category><![CDATA[file_get_contents]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[parse]]></category>
		<category><![CDATA[parser]]></category>
		<category><![CDATA[preg_match]]></category>
		<category><![CDATA[preg_match_all]]></category>
		<category><![CDATA[resim]]></category>
		<category><![CDATA[simplexml]]></category>
		<category><![CDATA[src]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://code.internet.com.tr/?p=420</guid>
		<description><![CDATA[simplexml ile ilgili daha önce yazı yazmıştım. xml ve html yi parse edecek bir sınıf yazacağız.
bu sınıfı daha sonra geliştirip projemizde kullanacağız.
sınıfımız ne yapacak.
xml dosyasından xpath ile title, link ve description alacak.
html sayfasından title, description ve resimleri çekecek.


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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
&#60;?php if &#40;!defined&#40;'BASEPATH'&#41;&#41; exit&#40;'No direct script access allowed'&#41;;
&#160;
class Parse &#123;
&#160;
    var $xpath;
    [...]]]></description>
		<wfw:commentRss>http://code.internet.com.tr/parse-sinifi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>kaçınılmaz html hataları</title>
		<link>http://code.internet.com.tr/kacinilmaz-html-hatalari/</link>
		<comments>http://code.internet.com.tr/kacinilmaz-html-hatalari/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 09:23:43 +0000</pubDate>
		<dc:creator>Emre Çevik</dc:creator>
				<category><![CDATA[genel]]></category>
		<category><![CDATA[ipuçları]]></category>
		<category><![CDATA[tasarim]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://code.internet.com.tr/?p=202</guid>
		<description><![CDATA[En çok kullanılan bazı html yanlışları.
#1 Benzer ID&#8217;ler
Yanlış

1
2
&#60;div id=&#34;someName&#34;&#62;Information&#60;/div&#62;
&#60;div id=&#34;someName&#34;&#62;Other information&#60;/div&#62;

Doğru

1
2
&#60;div id=&#34;information&#34;&#62;Information&#60;/div&#62;
&#60;div id=&#34;otherInfo&#34;&#62;Other information&#60;/div&#62;


#2 Alt etkiketi kullanmamak
Yanlış

1
&#60;img src=&#34;image.jpg&#34; /&#62;

Doğru

1
&#60;img src=&#34;image.jpg&#34;  alt=&#34;image alt tag&#34; /&#62;

#3 onClick kullanımı
Yanlış

1
&#60;a href=&#34;#&#34; onclick=&#34;popup();&#34;&#62;Click Here&#60;/a&#62;

Doğru

1
2
3
4
5
6
7
8
9
10
11
12
13
14
&#60;a href=&#34;popup.html&#34; rel=&#34;external&#34;&#62;Click Here&#60;/a&#62;
&#160;
&#60;script type=&#34;text/javascript&#34; charset=&#34;utf-8&#34;&#62;
    $('a[rel=&#34;external&#34;]').click( function() {
        popUp($(this).attr('href'));
       [...]]]></description>
		<wfw:commentRss>http://code.internet.com.tr/kacinilmaz-html-hatalari/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

