<?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>Jidni's Blog</title>
	<atom:link href="http://jidni.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jidni.wordpress.com</link>
	<description>There is always a tommorow</description>
	<lastBuildDate>Fri, 12 Aug 2011 04:40:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jidni.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Jidni's Blog</title>
		<link>http://jidni.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jidni.wordpress.com/osd.xml" title="Jidni&#039;s Blog" />
	<atom:link rel='hub' href='http://jidni.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Increase upload filesize in PHP from applicatoin</title>
		<link>http://jidni.wordpress.com/2010/12/28/increase-upload-filesize-in-php-from-applicatoin/</link>
		<comments>http://jidni.wordpress.com/2010/12/28/increase-upload-filesize-in-php-from-applicatoin/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 04:43:06 +0000</pubDate>
		<dc:creator>jidni</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[Increase upload filesize]]></category>
		<category><![CDATA[ini_set]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php_value]]></category>

		<guid isPermaLink="false">http://jidni.wordpress.com/?p=26</guid>
		<description><![CDATA[PHP calculates and displays the maximum file size that you can set based upon two PHP settings: &#8216;post_max_size&#8217; and &#8216;upload_max_filesize&#8217;. Since &#8216;post_max_size&#8217; is the limit for all the content of your post, many people choose &#8216;post_max_size&#8217; to be a multiple of &#8216;upload_max_filesize&#8217; to allow multiple files to be uploaded, but this is not essential. The <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jidni.wordpress.com&amp;blog=631511&amp;post=26&amp;subd=jidni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>PHP calculates and displays the maximum file size that you can set based upon two PHP settings: &#8216;post_max_size&#8217; and &#8216;upload_max_filesize&#8217;. Since &#8216;post_max_size&#8217; is the limit for all the content of your post, many people choose &#8216;post_max_size&#8217; to be a multiple of &#8216;upload_max_filesize&#8217; to allow multiple files to be uploaded, but this is not essential. The upload module limits the size of a single attachment to be less than either post_max_size, or upload_max_filesize, whichever is smaller. The default PHP values are 2 MB for upload_max_filesize, and 8 MB for post_max_size.</p>
<p>To increase maximum upload limit we need to change into PHP.ini file. Maximum file upload size that you can set based upon two PHP settings: &#8216;post_max_size&#8217; and &#8216;upload_max_filesize&#8217;. Since &#8216;post_max_size&#8217; is the limit for all the content of your post, many people choose &#8216;post_max_size&#8217; to be a multiple of &#8216;upload_max_filesize&#8217; to allow multiple files to be uploaded, but this is not essential. The upload module limits the size of a single attachment to be less than either post_max_size, or upload_max_filesize, whichever is smaller. The default PHP values are 2 MB for upload_max_filesize, and 8 MB for post_max_size.<br />
But we don’t have access into PHP.ini file while we are using a shared hostings. Still you can increase maximum upload file size from your application level. There is two way to do that. One is using PHP code and another is by .htaccess file.</p>
<p><strong>Using .htaccess</strong></p>
<p>Add the below to your .htaccess file in your root directory.<br />
…<br />
php_value upload_max_filesize 10M<br />
php_value post_max_size 10M<br />
…</p>
<p><strong>By PHP code</strong></p>
<p>Add following codes into your settings.php file</p>
<p>•	ini_set(&#8216;upload_max_filesize&#8217;, &#8217;10M&#8217;);<br />
•	ini_set(&#8216; post_max_size&#8217;, &#8217;10M&#8217;);</p>
<p>I will prefer to use .htaccess file to increase upload file size. Also you need to increase maximum executoin time for last files upload</p>
<p>php_value max_execution_time 300 #(default in ms)</p>
<p>The PHP documentation states that the memory_limit setting also affects file uploading. Generally speaking, memory_limit should be larger than post_max_size. If this is an issue, see the page on how to <a href="http://drupal.org/node/29268">Increase memory available to PHP (3 methods)</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jidni.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jidni.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jidni.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jidni.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jidni.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jidni.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jidni.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jidni.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jidni.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jidni.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jidni.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jidni.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jidni.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jidni.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jidni.wordpress.com&amp;blog=631511&amp;post=26&amp;subd=jidni&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://jidni.wordpress.com/2010/12/28/increase-upload-filesize-in-php-from-applicatoin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc87a304766555943b267c8fc4f0c8d6?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">jidni</media:title>
		</media:content>
	</item>
		<item>
		<title>How to publish blog post from Microsoft Office 2007</title>
		<link>http://jidni.wordpress.com/2008/11/09/how-to-publish-blog-post-from-microsoft-office-2007/</link>
		<comments>http://jidni.wordpress.com/2008/11/09/how-to-publish-blog-post-from-microsoft-office-2007/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 22:24:17 +0000</pubDate>
		<dc:creator>jidni</dc:creator>
				<category><![CDATA[Microsoft Office 2007 Blog Post]]></category>
		<category><![CDATA[Microsoft Office 2007]]></category>

		<guid isPermaLink="false">http://jidni.wordpress.com/2008/11/09/how-to-publish-blog-post-from-microsoft-office-2007/</guid>
		<description><![CDATA[To publish blog post from Microsoft Office 2007 you have to follow the following steps Open Microsoft Office 2007 Go Publish -&#62; Blog from the office button. See Fig-1 Then register your account here. If you using wordpress blog then change the xmlrpc server name. example: if your blog name is http://myblog.wordpress.com then your xmlrpc <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jidni.wordpress.com&amp;blog=631511&amp;post=16&amp;subd=jidni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To publish blog post from Microsoft Office 2007 you have to follow the following steps
</p>
<ol>
<li>Open Microsoft Office 2007
</li>
<li>Go Publish -&gt; Blog from the office button. See Fig-1
</li>
<li>Then register your account here.
</li>
<li>If you using wordpress blog then change the xmlrpc server name. example: if your blog name is <a href="http://myblog.wordpress.com">http://myblog.wordpress.com</a> then your xmlrpc server name will be <a href="http://myblog.wordpress.com/xmlrpc">http://myblog.wordpress.com/xmlrpc</a>
		</li>
<li>
<div>WordPress allowed you to post an image but blogger does not allow it yet. I don&#8217;t know about other blogs because I have not tested those yet.
</div>
<p>
 </p>
</li>
</ol>
<p><img src="http://jidni.files.wordpress.com/2008/11/110808-2223-howtopublis12.png?w=510"/>
	</p>
<p style="margin-left:18pt;">Fig &#8211; 1
</p>
<p style="margin-left:18pt;">Note: Your user name &amp; password may be hacked by this time because Microsoft Office 2007 sends your user name &amp; password each time to post and retrieve data from your blog.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jidni.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jidni.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jidni.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jidni.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jidni.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jidni.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jidni.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jidni.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jidni.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jidni.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jidni.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jidni.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jidni.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jidni.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jidni.wordpress.com&amp;blog=631511&amp;post=16&amp;subd=jidni&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://jidni.wordpress.com/2008/11/09/how-to-publish-blog-post-from-microsoft-office-2007/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc87a304766555943b267c8fc4f0c8d6?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">jidni</media:title>
		</media:content>

		<media:content url="http://jidni.files.wordpress.com/2008/11/110808-2223-howtopublis12.png" medium="image" />
	</item>
		<item>
		<title>Configure CURL with XAMPP</title>
		<link>http://jidni.wordpress.com/2008/08/26/configure-curl-with-xampp/</link>
		<comments>http://jidni.wordpress.com/2008/08/26/configure-curl-with-xampp/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 19:34:42 +0000</pubDate>
		<dc:creator>jidni</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[CURL with XAMPP]]></category>
		<category><![CDATA[Enable CURL extension in XAMPP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://jidni.wordpress.com/?p=8</guid>
		<description><![CDATA[Please do the following step to configure CURl XAMPP. For current php version Open xampp location/apache/bin/php.ini Uncomment the following line in the &#8220;Windows Extensions&#8221; section: extension=php_curl.dll Restart apache For all version of php please enable the php_curl.dll extension for the following files xampp location/apache/bin/php.ini xampp location/php/php5.ini xampp location/php/php.ini xampp location/php/php4/php.ini xampp location/php/php4/php4.ini Restart apache<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jidni.wordpress.com&amp;blog=631511&amp;post=8&amp;subd=jidni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Please do the following step to configure CURl XAMPP.</p>
<p>For current php version</p>
<ol>
<li>Open xampp location/apache/bin/php.ini</li>
<li>Uncomment the following line in the &#8220;Windows Extensions&#8221; section:               extension=php_curl.dll</li>
<li>Restart apache</li>
</ol>
<p>For all version of php please enable the <span style="font-weight:bold;">php_curl.dll</span> extension for the following files</p>
<ol>
<li>xampp location/apache/bin/php.ini</li>
<li>xampp location/php/php5.ini</li>
<li>xampp location/php/php.ini</li>
<li>xampp location/php/php4/php.ini</li>
<li>xampp location/php/php4/php4.ini</li>
<li>Restart apache</li>
</ol>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jidni.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jidni.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jidni.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jidni.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jidni.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jidni.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jidni.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jidni.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jidni.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jidni.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jidni.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jidni.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jidni.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jidni.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jidni.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jidni.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jidni.wordpress.com&amp;blog=631511&amp;post=8&amp;subd=jidni&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://jidni.wordpress.com/2008/08/26/configure-curl-with-xampp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc87a304766555943b267c8fc4f0c8d6?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">jidni</media:title>
		</media:content>
	</item>
		<item>
		<title>AUB 4th Convocation</title>
		<link>http://jidni.wordpress.com/2007/09/30/aub-4th-convocation/</link>
		<comments>http://jidni.wordpress.com/2007/09/30/aub-4th-convocation/#comments</comments>
		<pubDate>Sun, 30 Sep 2007 16:53:25 +0000</pubDate>
		<dc:creator>jidni</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://jidni.wordpress.com/2007/11/30/aub-4th-convocation/</guid>
		<description><![CDATA[9th September 2007 was a most memorable day in my life. I was attending AUB 4th convocation. I met with my AUB friends after a long time. Our honorable president had started the convocation opening ceremony. That was an important directional speech he through to us. For View more picture click here<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jidni.wordpress.com&amp;blog=631511&amp;post=6&amp;subd=jidni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">9<sup>th</sup> September 2007 was a most memorable day in my life. I was attending AUB 4<sup>th</sup> convocation. I met with my AUB friends after a long time. Our honorable president had started the convocation opening ceremony. That was an important directional speech he through to us.</p>
<p>For View more picture <a href="http://www.flickr.com/photos/jidni/sets/72157603276711733/" target="_blank">click here</a></p>
<p class="MsoNormal"><div><embed src='http://widget-e3.slide.com/widgets/slideticker.swf' type='application/x-shockwave-flash' quality='high' scale='noscale' salign='l' wmode='transparent' flashvars='site=widget-e3.slide.com&channel=936748722499093731&cy=wp&il=1' width='426' height='320' name='flashticker' align='middle' /><div style='width: 426px;text-align:left;'><a href='http://www.slide.com/pivot?ad=0&tt=0&sk=0&cy=wp&th=0&id=936748722499093731&map=1' target='_blank'><img src='http://widget-e3.slide.com/p1/936748722499093731/wp_t000_v000_a000_f00/images/xslide1.gif' border='0' ismap='ismap' /></a> <a href='http://www.slide.com/pivot?ad=0&tt=0&sk=0&cy=wp&th=0&id=936748722499093731&map=2' target='_blank'><img src='http://widget-e3.slide.com/p2/936748722499093731/wp_t000_v000_a000_f00/images/xslide2.gif' border='0' ismap='ismap' /></a></div></div></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jidni.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jidni.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jidni.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jidni.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jidni.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jidni.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jidni.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jidni.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jidni.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jidni.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jidni.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jidni.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jidni.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jidni.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jidni.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jidni.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jidni.wordpress.com&amp;blog=631511&amp;post=6&amp;subd=jidni&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://jidni.wordpress.com/2007/09/30/aub-4th-convocation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc87a304766555943b267c8fc4f0c8d6?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">jidni</media:title>
		</media:content>
	</item>
		<item>
		<title>Add rows(with content) from modal child window to parent window</title>
		<link>http://jidni.wordpress.com/2006/12/23/hello-world/</link>
		<comments>http://jidni.wordpress.com/2006/12/23/hello-world/#comments</comments>
		<pubDate>Sat, 23 Dec 2006 03:59:25 +0000</pubDate>
		<dc:creator>jidni</dc:creator>
				<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[// description of code here /* * This is a function for put data from child window (with data) * to parent window. * Make a tabody by id=&#8221;addFromMarketingList&#8221; into the parent window */ function addToList(){ if(window.dialogArguments){ opener = window.dialogArguments; } openerTBody = opener.document.getElementById(&#8220;addFromMarketingList&#8220;);//parent window TBODY for(var i=0;i&#60;document.forms[0].elements.length;i++){ if(document.forms[0].elements[i].type==&#8221;checkbox&#8220;){ if(document.forms[0].elements[i].checked){ var parentElementTD = document.forms[0].elements[i].parentElement; var parentElementTR <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jidni.wordpress.com&amp;blog=631511&amp;post=1&amp;subd=jidni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>// description of code here<br />
/*<br />
* This is a function for put data from child window (with data)<br />
* to parent window.<br />
* Make a tabody by id=&#8221;addFromMarketingList&#8221; into the parent window<br />
*/<br />
<span class="ident">function</span> <span class="ident">addToList</span><span class="punct">(){</span><br />
<span class="keyword">if</span><span class="punct">(</span><span class="ident">window</span><span class="punct">.</span><span class="ident">dialogArguments</span><span class="punct">){</span><br />
<span class="ident">opener</span> <span class="punct">=</span> <span class="ident">window</span><span class="punct">.</span><span class="ident">dialogArguments</span><span class="punct">;</span><br />
<span class="punct">}</span><br />
<span class="ident">openerTBody</span> <span class="punct">=</span> <span class="ident">opener</span><span class="punct">.</span><span class="ident">document</span><span class="punct">.</span><span class="ident">getElementById</span><span class="punct">(&#8220;</span><span class="string">addFromMarketingList</span><span class="punct">&#8220;);/</span><span class="regex"></span><span class="punct">/</span><span class="ident">parent</span> <span class="ident">window</span> <span class="constant">TBODY</span></p>
<p><span class="keyword">for</span><span class="punct">(</span><span class="ident">var</span> <span class="ident">i</span><span class="punct">=</span><span class="number">0</span><span class="punct">;</span><span class="ident">i</span><span class="punct">&lt;</span><span class="ident">document</span><span class="punct">.</span><span class="ident">forms</span><span class="punct">[</span><span class="number">0</span><span class="punct">].</span><span class="ident">elements</span><span class="punct">.</span><span class="ident">length</span><span class="punct">;</span><span class="ident">i</span><span class="punct">++){</span><br />
<span class="keyword">if</span><span class="punct">(</span><span class="ident">document</span><span class="punct">.</span><span class="ident">forms</span><span class="punct">[</span><span class="number">0</span><span class="punct">].</span><span class="ident">elements</span><span class="punct">[</span><span class="ident">i</span><span class="punct">].</span><span class="ident">type</span><span class="punct">==&#8221;</span><span class="string">checkbox</span><span class="punct">&#8220;){</span><br />
<span class="keyword">if</span><span class="punct">(</span><span class="ident">document</span><span class="punct">.</span><span class="ident">forms</span><span class="punct">[</span><span class="number">0</span><span class="punct">].</span><span class="ident">elements</span><span class="punct">[</span><span class="ident">i</span><span class="punct">].</span><span class="ident">checked</span><span class="punct">){</span><br />
<span class="ident">var</span> <span class="ident">parentElementTD</span> <span class="punct">=</span> <span class="ident">document</span><span class="punct">.</span><span class="ident">forms</span><span class="punct">[</span><span class="number">0</span><span class="punct">].</span><span class="ident">elements</span><span class="punct">[</span><span class="ident">i</span><span class="punct">].</span><span class="ident">parentElement</span><span class="punct">;</span><br />
<span class="ident">var</span> <span class="ident">parentElementTR</span> <span class="punct">=</span> <span class="ident">parentElementTD</span><span class="punct">.</span><span class="ident">parentElement</span><span class="punct">;</span><br />
<span class="ident">var</span> <span class="ident">myTR</span> <span class="punct">=</span> <span class="ident">opener</span><span class="punct">.</span><span class="ident">document</span><span class="punct">.</span><span class="ident">createElement</span><span class="punct">(&#8220;</span><span class="string">TR</span><span class="punct">&#8220;);</span><br />
<span class="ident">myTR</span><span class="punct">.</span><span class="ident">className</span><span class="punct">=&#8221;</span><span class="string">odd</span><span class="punct">&#8220;;</span><br />
<span class="keyword">for</span><span class="punct">(</span><span class="ident">var</span> <span class="ident">j</span><span class="punct">=</span><span class="number">0</span><span class="punct">;</span><span class="ident">j</span><span class="punct">&lt;</span><span class="ident">parentElementTR</span><span class="punct">.</span><span class="ident">childNodes</span><span class="punct">.</span><span class="ident">length</span><span class="punct">;</span><span class="ident">j</span><span class="punct">++){</span><br />
<span class="ident">var</span> <span class="ident">myTD</span><span class="punct">=</span><span class="ident">opener</span><span class="punct">.</span><span class="ident">document</span><span class="punct">.</span><span class="ident">createElement</span><span class="punct">(&#8220;</span><span class="string">TD</span><span class="punct">&#8220;);</span><br />
<span class="ident">myTD</span><span class="punct">.</span><span class="ident">innerHTML</span> <span class="punct">=</span> <span class="ident">parentElementTD</span><span class="punct">.</span><span class="ident">innerHTML</span><span class="punct">;</span><br />
<span class="ident">myTR</span><span class="punct">.</span><span class="ident">appendChild</span><span class="punct">(</span><span class="ident">myTD</span><span class="punct">);</span><br />
<span class="ident">var</span> <span class="ident">parentElementTD</span> <span class="punct">=</span> <span class="ident">parentElementTD</span><span class="punct">.</span><span class="ident">nextSibling</span><span class="punct">;</span><br />
<span class="punct">}</span><br />
<span class="ident">openerTBody</span><span class="punct">.</span><span class="ident">appendChild</span><span class="punct">(</span><span class="ident">myTR</span><span class="punct">);</span><br />
<span class="punct">}</span><br />
<span class="punct">}</span><br />
<span class="punct">}</span><br />
<span class="ident">window</span><span class="punct">.</span><span class="ident">close</span><span class="punct">();</span><br />
<span class="punct">}</span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jidni.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jidni.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jidni.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jidni.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jidni.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jidni.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jidni.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jidni.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jidni.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jidni.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jidni.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jidni.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jidni.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jidni.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jidni.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jidni.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jidni.wordpress.com&amp;blog=631511&amp;post=1&amp;subd=jidni&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://jidni.wordpress.com/2006/12/23/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc87a304766555943b267c8fc4f0c8d6?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">jidni</media:title>
		</media:content>
	</item>
	</channel>
</rss>
