<?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>Welcome To saiful103a&#039;s World</title>
	<atom:link href="http://saiful103a.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://saiful103a.wordpress.com</link>
	<description>saiful103a.wordpress.com</description>
	<lastBuildDate>Sun, 13 Dec 2009 07:21:04 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='saiful103a.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/6554ba0ded5c2555bdac2d17fd4ed1fe?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Welcome To saiful103a&#039;s World</title>
		<link>http://saiful103a.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://saiful103a.wordpress.com/osd.xml" title="Welcome To saiful103a&#039;s World" />
		<item>
		<title>jQuery bangla tutorial part-3</title>
		<link>http://saiful103a.wordpress.com/2009/11/14/jquery-bangla-tutorial-part-3/</link>
		<comments>http://saiful103a.wordpress.com/2009/11/14/jquery-bangla-tutorial-part-3/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 08:51:45 +0000</pubDate>
		<dc:creator>saiful103a</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://saiful103a.wordpress.com/?p=87</guid>
		<description><![CDATA[আমি jQuery Object Accessors সর্ম্পকে বলব,এর অর্থ থেকেই হয়তবুজে গিয়েছেন এদের কাজ হল
document এর object গুলোকে access
করা।
each():  
$(“a”).click(function () {
$("div").each(function (i) {
if (this.style.color != "red") {
this.style.color = "red";
} else {
this.style.color = "";
}
});
});
এখানে আমি  নামের একটা link খুজছি যেটাতে click করলে পুরো document-এ যতগুলো div element আছে তাদের সবার color  red না থাকলে [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=87&subd=saiful103a&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>আমি jQuery Object Accessors সর্ম্পকে বলব,এর অর্থ থেকেই হয়তবুজে গিয়েছেন এদের কাজ হল<br />
document এর object গুলোকে access<br />
করা।<br />
<code><strong>each(): </strong> </code><br />
<code>$(“a”).click(function () {<br />
$("div").each(function (i) {<br />
if (this.style.color != "red") {<br />
this.style.color = "red";<br />
} else {<br />
this.style.color = "";<br />
}<br />
});<br />
});</code><br />
এখানে আমি <code><a></a></code> নামের একটা link খুজছি যেটাতে click করলে পুরো document-এ যতগুলো div element আছে তাদের সবার color  red না থাকলে red কর,আর red থাকলে এদের আগে যে color ছিল তা কর।<br />
এখন আপনার প্রশ্ন হতে পারে document এ ত আরো অনেক link  থাকতে পারে তখন?উত্তর হল সে সময় আপনি যদি প্রতিটা link এর id বা class আলাদা করে দেন তাহলে পরবর্তীতে দেখবেন কিভাবে আপনি এই id বা class এর মাধ্যমে specifically কোনলিঙ্ক element কে select করে action assign করতে পারবেন।কি এখন তবুজতে পারছেন jQuery আসলেই সহজ।আসলে jQuery কে বানানোই হয়েছে এই উদ্দেশ্যে ।যাতে খুব কম code লেখে javascript এর অনেক বড় কাজ করা যায়।<br />
আপনি যদি dom বুঝেন তাহলে লক্ষ করলে দেখবেন উপরের এই কাজটুকু যদি করতে আপনাকে হয়ত 10-20 বা আরো বেশি লাইনের বেশি code লেখতে হতে পারে।তার চেয়ে এটা ব্যবহার করা সহজ নয় কি?<br />
<code><strong>size(): </strong> </code><br />
<code>$(document.body).click(function () {<br />
$(document.body).append($(" </code><br />
&lt;div&gt;&#8221;));<br />
var n = $(&#8220;div&#8221;).size();<br />
$(&#8220;span&#8221;).text(&#8220;There are &#8221; + n + &#8221; divs.&#8221; +<br />
&#8220;Click to add more.&#8221;);<br />
}).click(); // trigger the click to start</p>
<p>এখানে দেখুন আপনি যখন document.body তে click করবেন তখন<br />
document.body তে আমি <code>$(html)</code> এর মাধ্যমে একটি</p>
<p>element add করছি।তবে এবার করছি একটু ভিন্নভাবে তাই না?একটু খেয়ালকরলে দেখবেন দুটা আসলে একই।এখন ভাবুনতো আমি আপনাকে দেব আর আপনি আমার কাছ থকে নিবেন ,এ দুটার মধ্যে পার্থক্য কি?হা হা হা,একই তাই না?প্রথম আমি element তৈ্রি করে তা document body তে append করতে বলেছি এখন document body তে append করতে বলছি div নামের একটা element কে। তারপর n নামের একটি variable এর ভেতর total document এ কতগুলো div element আছে তা গননা করে একটা integer মান রাখছি <code>size()</code> function এর মাধ্যমে।<br />
তারপর “span” নামের কোন element থাকলে এর ভেতর text এর মাধ্যমে লেখছি div কয়টা আছে।আর সবশেষে আমি নিজেই একটা click করে দিচ্ছি document ready<br />
হওয়ার সাথে সাথে <code>click() </code>এর মাধ্যমে “একে সাধারন ভাষায় বলে trigger করা”।এখন আপনি লক্ষ করে দেখবেন আপনি যতবার click করছেন ততবার একটি করে div add হচ্ছে আপনার document এ, এবং span এর ভেতর লেখাও প্রতিবার change হচ্ছে। সবচেয়ে ভাল হয় আপনি যদি আপনি css এর মাধ্যমে div এর border , color দিয়ে দিলে । এ কাজটি করতে পারেন css এর মাধ্যমে,আপনি নিচের কোডটি head এর মাঝখানে লিখুন।<br />
<code><br />
div { width:30px; height:20px; margin:6px; float:left;<br />
background:red; }<br />
span { color:red; }<br />
</code><br />
<code><strong>length:</strong></code><br />
<code>$(document.body).mouseout(function () {<br />
$(document.body).append($(" </code><br />
&lt;div&gt;&#8221;));<br />
var n = $(&#8220;div&#8221;).length;<br />
$(&#8220;span&#8221;).text(&#8220;There are &#8221; + n + &#8221; divs.&#8221; +<br />
&#8220;Click to add more.&#8221;);<br />
}).trigger(&#8216;mouseout&#8217;);<br />
আসলে length এবং <code>size()</code> এর কাজ একই ।তাই আমি আর বেশি কিছু বললাম না length সম্পর্কে ।তবে এখানে একটা কথা বলি trigger নিয়ে ।trigger ও jquery র আর একটি function. size() এর উদাহরণ এ প্রথম click টা আমি<br />
কিভাবে করেছিলাম? Code এর শেষে <code>click()</code> দিয়ে trigger করে। তাই না? এখানে ও একই কাজ করেছি ।তবে একটু ভিন্নভাবে, trigger function দিয়ে। আমি trigger function এর ভেতর বলে দিচ্ছি তুমি mouseout নামে যে event টি আছে সেটি execute কর প্রথম বার page ready হওয়ার সাথে সাথে ।সে ও তাই page ready হওয়ার সাথে সাথেই mouseout নামের event<br />
টি execute করে ।<br />
And that&#8217;s it for today..<br />
one thing again&#8211;আমি এই টিউটরিয়ালটা-ও first টিউটরিয়ালটা-r সাথেই লিখেছিলাম। খালি copy-paste করার বাকি ছিল।<br />
and it was last part that was written but now i&#8217;ve to write again<br />
for new tutorial<br />
..<br />
<strong>And HAVE A GOOD PROGRAMMING</strong></p>
Posted in JavaScript, JQuery  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saiful103a.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saiful103a.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saiful103a.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saiful103a.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saiful103a.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saiful103a.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saiful103a.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saiful103a.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saiful103a.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saiful103a.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=87&subd=saiful103a&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://saiful103a.wordpress.com/2009/11/14/jquery-bangla-tutorial-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bab5872a632f4937715f34fcdb080ed9?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">saiful103a</media:title>
		</media:content>
	</item>
		<item>
		<title>jQuery bangla tutorial part-2</title>
		<link>http://saiful103a.wordpress.com/2009/11/08/jquery-banglatutorial-part-2/</link>
		<comments>http://saiful103a.wordpress.com/2009/11/08/jquery-banglatutorial-part-2/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 20:14:29 +0000</pubDate>
		<dc:creator>saiful103a</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://saiful103a.wordpress.com/?p=80</guid>
		<description><![CDATA[আমি যে উদাহরণ গুলো দেখাব তাতে আমি সম্পুর্ণ কোড দেখাব না।jQuery র কোড গুলো আপনাকে আবশ্যই  এর ভেতর  tag  দিয়ে লেখতে হবে।
Javascript এ যারা window.onload() function নিয়ে কাজ করেছেন তারা হয়ত খেয়াল করেছেন, এর মাধ্যমে কল করা কোন ফাংশন তখনই execute হয় যখন page এর সব object ও content load হয় ।মানে [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=80&subd=saiful103a&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>আমি যে উদাহরণ গুলো দেখাব তাতে আমি সম্পুর্ণ কোড দেখাব না।jQuery র কোড গুলো আপনাকে আবশ্যই  এর ভেতর  tag  দিয়ে লেখতে হবে।<br />
Javascript এ যারা <code>window.onload()</code> function নিয়ে কাজ করেছেন তারা হয়ত খেয়াল করেছেন, এর মাধ্যমে কল করা কোন ফাংশন তখনই execute হয় যখন page এর সব object ও content load হয় ।মানে হচ্ছে কোন image যদি কোন কারণে লোড না হতে পারে তাহলে আপনার onload() এর দ্বারা যে ফাংশন কল করা হয়েছে তা আর execute হবে না।jquery তে <code>.ready()</code> function অনেকটা onload এর মত।difference হল এটাতে কোন page এর dom object গুলো যদি jquery হাতে পায় তাহলেই সে তার কাজ শুরু করে দেয় ।আর dom কে আপনি html এর বড় ভাই-ই বলতে পারেন তাই এগুলো একটু তাড়াতাড়ি-ই load হয় ।কারন,আপনি যদি আমাকে বলেন,তাহলে আমি বলব একটি page এ h1 নামের কোন element থাকলে সেটা লোড হতে যদি কোন সমস্যা না হয় তাহলে dom load হতেও কোন সমস্যা হওয়ার কথা না।<br />
আর একটা জিনিস হল ready() function টি আপনার যতবার দরকার ততবার-ই কল করতে পারবেন ।<br />
মাঝে মাঝে <code>$(document).ready() ;</code> কে “ $(); “ দিয়ে replace করে shortcut-এ<br />
<code><br />
 $ (function(){ your code here });<br />
</code><br />
লেখা হয়।<br />
চলুন এখন jQuery function গুলোর দিকে নজর দেই<br />
<code>jQuery( html ) / $(html):</code><br />
ধরুন  আপনি চাচ্ছেন user কে তার action এর উপর depend করে কোন লেখা দেখাবেন,যেমন<br />
<code><br />
$(document).ready(<br />
function(){<br />
$("
<div>
<p>Hello</p>
</div>
<p>").appendTo("body");<br />
  }<br />
  );<br />
</code></p>
<p>এখনই কোন action define করলাম না বুঝার সুবিধার জন্য।এই কোডটি আপনার page এ একটা Hello লেখা দেখাবে।এখানে যা হল,তা হচ্ছে<br />
আমরা $(এখানে html code লেখেছি) পরে তা <code>appendeTo()</code> দিয়ে html body তে add করেছি ।যদিও আপনি html source code দেখলে Hello লেখা খুজে পাবেন না। পরে action assign করলে আরও ভালো করে এ জিনিসটি বুঝবেন আর এর কাজটা দেখবেন কত মজার।<br />
চলুন এটাতে একটা action assign করি<br />
<code><br />
$("
<div>
<p>Hello</p>
</div>
<p>").appendTo("body").click(function(){$(this).text(“jQuery”)});<br />
</code></p>
<p>এখানে আমি যা করতে চাচ্ছি তা হল Hello লেখাটিতে যখন কেউ click করবে তখন একটা function কাজ করুক,এবং ‘this’ means-&gt;<code>
<div>
<p>এর মধ্যেই</p>
</div>
<p></code>&#8220;jQuery লেখাটা দেখাও,যেখানে Hello লেখাটা আছে এবং আমরা এ কাজটি করছি .text() এর মাধ্যমে।দেখলেনত কত মজার।এভাবে আরও কিছুদুর এগুলে আপনি নিজেই user এর এক click এ পুরো page এর চেহারা বদলে দিতে পারবেন।এখানে text() এর কাজ নিয়ে আমরা পরে বিস্তারিত বলব।</p>
<p>আমি এই টিউটরিয়ালটা first টিউটরিয়ালটা-r সাথেই লিখেছিলাম। খালি copy-paste করার বাকি ছিল। করব করব বলে করা হয়ে উঠে নাই।আজ করে ফেললাম।</p>
<p>you can find similar post in<br />
<a href="http://forum.beacoder.com/viewtopic.php?f=51&amp;t=70&amp;start=0"><strong>beacoder</strong></a><br />
if you have any question you are welcome&#8230;</p>
<p>And <strong>HAVE A GOOD PROGRAMMING</strong></p>
Posted in JavaScript, JQuery  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saiful103a.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saiful103a.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saiful103a.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saiful103a.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saiful103a.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saiful103a.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saiful103a.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saiful103a.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saiful103a.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saiful103a.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=80&subd=saiful103a&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://saiful103a.wordpress.com/2009/11/08/jquery-banglatutorial-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bab5872a632f4937715f34fcdb080ed9?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">saiful103a</media:title>
		</media:content>
	</item>
		<item>
		<title>oracle with netbeans ide&#8230;..</title>
		<link>http://saiful103a.wordpress.com/2009/11/08/oracle-with-netbeans-ide/</link>
		<comments>http://saiful103a.wordpress.com/2009/11/08/oracle-with-netbeans-ide/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 19:52:44 +0000</pubDate>
		<dc:creator>saiful103a</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://saiful103a.wordpress.com/?p=64</guid>
		<description><![CDATA[somedays ago one of my friends just ask me that did i know how to connect oracle with netbeans ide?I said yes i know.And i have told some about it and i think that will help him,and also i think why don&#8217;t i share this topic in my blog,then the others can know it too.So [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=64&subd=saiful103a&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>somedays ago one of my friends just ask me that did i know how to connect oracle with netbeans ide?I said yes i know.And i have told some about it and i think that will help him,and also i think why don&#8217;t i share this topic in my blog,then the others can know it too.So here it goes..</p>
<p>open your ide. then you will see like this</p>
<p><img class="alignnone size-full wp-image-65" title="1" src="http://saiful103a.files.wordpress.com/2009/08/1.gif?w=297&#038;h=213" alt="1" width="297" height="213" /></p>
<p>go to databases, then right click on it.<br />
and go to &#8220;new connection&#8221;</p>
<p><img class="alignnone size-full wp-image-66" title="2" src="http://saiful103a.files.wordpress.com/2009/08/2.gif?w=299&#038;h=127" alt="2" width="299" height="127" /></p>
<p>after that</p>
<p><img class="alignnone size-full wp-image-67" title="3" src="http://saiful103a.files.wordpress.com/2009/08/3.gif?w=400&#038;h=322" alt="3" width="400" height="322" /></p>
<p>in the name field select  &#8220;new driver&#8221;</p>
<p><img class="alignnone size-full wp-image-68" title="4" src="http://saiful103a.files.wordpress.com/2009/08/4.gif?w=400&#038;h=316" alt="4" width="400" height="316" /></p>
<p>now you will see something like this:</p>
<p><img class="alignnone size-full wp-image-69" title="5" src="http://saiful103a.files.wordpress.com/2009/08/5.gif?w=400&#038;h=286" alt="5" width="400" height="286" /></p>
<p>now click on add button and give it the location of  your oracle driver file<br />
for mine it was:<br />
…oracle/product/10.1.0/db_2/jdbc/lib/ojdbc14.jar<br />
after adding this jar file your netbeans will automatically do the rest of the work for you.<br />
Now Driver class:<strong>oracle.jdbc.OracleDriver</strong><br />
then look at your database url,it will be look like<br />
&#8220;jdbc:oracle:*1:*2:*3:*4&#8243;</p>
<p>Now in no.<br />
*1:<br />
try first giving<br />
<strong><em>oci8</em></strong><br />
if it don&#8217;t work with your driver then try<br />
<strong><em>thin</em></strong><br />
*2:<br />
<strong>@localhost</strong><br />
*3:<br />
port number of your server<br />
if you don&#8217;t know in which port is your server is active<br />
then see <a href="http://saiful103a.wordpress.com/2009/07/16/java-oracle-connection/"><strong>java-oracle</strong></a><br />
tutorial.After getting the port number write it to in &#8220;*3&#8243;<br />
*4:<br />
in here you have to put session id[SID] from server.If you don&#8217;t know the [SID] then you can get it by following above <a href="http://saiful103a.wordpress.com/2009/07/16/java-oracle-connection/"><strong>tutorial</strong></a></p>
<p>For me it was..<br />
&#8220;jdbc:oracle:thin:@localhost:1521:orcl&#8221;</p>
<p>Now you have to give the username and password,for which user  do you want to connect.<br />
[remember the username and password is for ur database user<br />
e.g like "system","manager" is a user ]<br />
for me i have another user &#8217;saiful103a&#8217; beside system so i give<br />
user:saiful103a<br />
pass:saiful103a<br />
 now connect with ur given username<br />
and see the power of netbeans over oracle..<br />
<img src="http://saiful103a.files.wordpress.com/2009/11/connect.jpg?w=328&#038;h=263" alt="connect" title="connect" width="328" height="263" class="alignnone size-full wp-image-76" /></p>
<p>And that&#8217;s it</p>
<p>And <strong>HAVE A GOOD PROGRAMMING</strong></p>
Posted in Java, Oracle  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saiful103a.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saiful103a.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saiful103a.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saiful103a.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saiful103a.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saiful103a.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saiful103a.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saiful103a.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saiful103a.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saiful103a.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=64&subd=saiful103a&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://saiful103a.wordpress.com/2009/11/08/oracle-with-netbeans-ide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bab5872a632f4937715f34fcdb080ed9?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">saiful103a</media:title>
		</media:content>

		<media:content url="http://saiful103a.files.wordpress.com/2009/08/1.gif" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://saiful103a.files.wordpress.com/2009/08/2.gif" medium="image">
			<media:title type="html">2</media:title>
		</media:content>

		<media:content url="http://saiful103a.files.wordpress.com/2009/08/3.gif" medium="image">
			<media:title type="html">3</media:title>
		</media:content>

		<media:content url="http://saiful103a.files.wordpress.com/2009/08/4.gif" medium="image">
			<media:title type="html">4</media:title>
		</media:content>

		<media:content url="http://saiful103a.files.wordpress.com/2009/08/5.gif" medium="image">
			<media:title type="html">5</media:title>
		</media:content>

		<media:content url="http://saiful103a.files.wordpress.com/2009/11/connect.jpg" medium="image">
			<media:title type="html">connect</media:title>
		</media:content>
	</item>
		<item>
		<title>jQuery bangla tutorial part-1</title>
		<link>http://saiful103a.wordpress.com/2009/08/26/jquery-banglatutorial-part-1/</link>
		<comments>http://saiful103a.wordpress.com/2009/08/26/jquery-banglatutorial-part-1/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 19:03:30 +0000</pubDate>
		<dc:creator>saiful103a</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://saiful103a.wordpress.com/?p=70</guid>
		<description><![CDATA[কিছুদিন আগে আমি jQuery নিয়ে ঘাটাঘাটি করেছিলাম। হঠাৎ মনে হলো যা শিখলাম তা শেয়ার করছি না কেন? এটা করলেত আমারই লাভ
।সোজা কথায় বলতে গেলে আমি চাচ্ছি আমার সীমিত knowledge আমি সবার সাথে শেয়ার করতে।আমার বলার মাঝে কোন ভুল থাকলে তা অবশ্যই শুধরে দিবেন।তাহলে চলুন শুরু করি।
সোজা ভাষায় jQuery আর কিছুই না,javascript দিয়ে তৈরি একটা বিশাল [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=70&subd=saiful103a&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>কিছুদিন আগে আমি jQuery নিয়ে ঘাটাঘাটি করেছিলাম। হঠাৎ মনে হলো যা শিখলাম তা শেয়ার করছি না কেন? এটা করলেত আমারই লাভ<br />
।সোজা কথায় বলতে গেলে আমি চাচ্ছি আমার সীমিত knowledge আমি সবার সাথে শেয়ার করতে।আমার বলার মাঝে কোন ভুল থাকলে তা অবশ্যই শুধরে দিবেন।তাহলে চলুন শুরু করি।</p>
<p>সোজা ভাষায় jQuery আর কিছুই না,javascript দিয়ে তৈরি একটা বিশাল library।মানে আপনি যদি javascript এ নিজেকে বস মনে করেন তাহলে আপনি নিজেই এরকম একটা library বানাতে পারবেন।বিশাল এ কারনে যে এটা এখন শুধু john resig এর না।এটার popularity এতই,যে এটাকে develop করার জন্য সবাই কাজ করে যাচ্ছে।ohhh, sorry আমি কি বলছি আপনাদের? john resig এই library টি তৈরী করেছেন।</p>
<p>যা হোক কথা বেশি বলা ভাল না। চলুন code-এ যাই।<br />
প্রথম কাজ -ত library টা download করা।এটা আপনি কষ্ট করে http://jquery.com থেকে download করে নিন। latest টাই download কইরেন।</p>
<p>এখন আপনার htm file -এ অন্য সব js file এর মত import koren.</p>
<p><code></p>
<p></code></p>
<p><code></p>
<p>  $(document).ready(<br />
  function(){<br />
$(document.body).css( "background", "black" );<br />
  }<br />
  );</p>
<p></code></p>
<p>এখন প্রথম &#8221; $ &#8221; -র কথা বলি।আসলে এটা দিয়ে jQuery কে বলে দেয়া হচ্ছে কার উপর কাজ বা function effect ফেলতে হবে।<br />
আপনাকে এটা দিয়েই করতে হবে এমন কোন কথা নাই।কারন মাঝে মাঝে আপনি হয়ত আরো library import করবেন,যেখানে &#8220;$&#8221; use করতে হবে ঐ library-r জন্য, তখন আপনি কি করবেন? এ সময় আপনি শুধু jquery কে বলে দিন তুমি &#8220;$&#8221; নিয়ে কোন রকম গন্ডগোল করবানা । এর জন্য অবশ্য নিচের মত একটি line আপনাকে সবার উপর লেখতে হবে।</p>
<p><code><br />
jQuery.noConflict();<br />
</code></p>
<p>এরপর jquery import করে যেখানে &#8220;$&#8221; use করতেন, সেখানে লেখুন &#8220;jQuery&#8221;।</p>
<p>এখন first কোডটি দেখুন। এখানে আমি jquery কে বলছি তুমি document যখন ready হবে তখন এর body র background color black করে দাও। কিন্তু javascript ত এরকম কিছু করতে পারে না? তাহলে?একটা question হতে পারে এটা নিয়ে।এটার উত্তর হলো, css পারে।আমরা css -এ কিভাবে body background color দেই?<br />
<code></p>
<p>       BODY { background-color:black; }</p>
<p></code></p>
<p>আর আমরা ঠিক এ কাজটি-ই করেছি উপরে .css() এর মাধ্যমে। javascript dom এর মাধ্যমে আপনি নিজেও এ কাজটি করতে পারেন।jquery ও এই dom এর মাধ্যমে এ কাজটি করেছে।এটাকে আসলে বলা হয় &#8220;Document Object Model&#8221;।আপনি যদি এটা ভাল পারেন তাহলেই বলা যায় আপনি &#8220;javascript ninja&#8221;।এটা আসলে বিশাল আলোচনার বিষয়।<br />
আমি আর ওদিকে যাচ্ছি না।<br />
আমার পরে .css() এর আর-ও কাজ দেখব।</p>
<p>আজ এখানেই শেষ করলাম।<br />
And &#8220;HAVE A GOOD PROGRAMMING&#8221;</p>
<p>&#8212;&#8212;&#8212;&#8212;<br />
আমি এই পোষটটা অনেকদিন আগে লিখেছিলাম ।আপনি অরিজিনাল পোষটটা ইচছা করলে নিচের ঠিকানায় দেখতে পারেন।<br />
হঠাৎ মনে হলো নিজের বলগে এটা কপি পেষট মেরে দিই।আর বলগটা আর একটু rich করি।<br />
and just trying to you know what i mean&#8230;.<br />
<a href="http://forum.beacoder.com/viewtopic.php?f=51&amp;t=64&amp;start=0">http://forum.beacoder.com/viewtopic.php?f=51&amp;t=64&amp;start=0</a></p>
Posted in JavaScript, JQuery  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saiful103a.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saiful103a.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saiful103a.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saiful103a.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saiful103a.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saiful103a.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saiful103a.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saiful103a.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saiful103a.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saiful103a.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=70&subd=saiful103a&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://saiful103a.wordpress.com/2009/08/26/jquery-banglatutorial-part-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bab5872a632f4937715f34fcdb080ed9?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">saiful103a</media:title>
		</media:content>
	</item>
		<item>
		<title>again php captcha script</title>
		<link>http://saiful103a.wordpress.com/2009/07/21/again-php-captcha-script/</link>
		<comments>http://saiful103a.wordpress.com/2009/07/21/again-php-captcha-script/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 06:58:43 +0000</pubDate>
		<dc:creator>saiful103a</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://saiful103a.wordpress.com/?p=62</guid>
		<description><![CDATA[You&#8217;ve already seen a post about captcha.If not i encourage you to see it.Thuough it is pretty simple captcha script.If you try to run that script you will notice that it is not like others where they have different type of background color,different type of font,noise.So in this post i will try to figure that.
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=62&subd=saiful103a&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You&#8217;ve already seen a post about captcha.If not i encourage you to see it.Thuough it is pretty simple captcha script.If you try to run that script you will notice that it is not like others where they have different type of background color,different type of font,noise.So in this post i will try to figure that.</p>
<p> First make a file name &#8220;<em>captcha.php</em>&#8220;</p>
<p>now paste</p>
<p><code></p>
<p>&lt;?php</p>
<p>session_start();</p>
<p>function captcha($length) {</p>
<p>    // generate a totally random string using md5<br />
    $rd = md5(rand(0, 999)); </p>
<p>    // We don't need a 32 character long string so we trim it down to 5  because md5 will return a long string<br />
    $code = substr($rd, 15, $length); </p>
<p>    // Set the session to store the security code<br />
    $_SESSION["captcha"] = $code;</p>
<p>    // Set the image width and height<br />
    $width = 200;<br />
    $height = 50;</p>
<p>    // Create the image resource<br />
    $image = imagecreate($width, $height);</p>
<p>    // Random RGB colours<br />
    $rgb1 = rand(0, 255);<br />
    $rgb2 = rand(0, 255);<br />
    $rgb3 = rand(0, 255);</p>
<p>    $background = imagecolorallocate($image, $rgb1, $rgb2, $rgb3);<br />
    $text = imagecolorallocate($image, ($rgb1 - 60), ($rgb2 - 60), ($rgb3 - 60));</p>
<p>    // Make the background colour<br />
    imagefill($image, 0, 0, $background);<br />
        for ($i = 0; $i &lt; 10; $i++) {<br />
$rx1 = rand(0,$width);<br />
$rx2 = rand(0,$width);<br />
$ry1 = rand(0,$height);<br />
$ry2 = rand(0,$height);<br />
$rcVal = rand(0,255);<br />
$rc1 = imagecolorallocate($image,<br />
rand(0,255),<br />
rand(0,255),<br />
rand(100,255));<br />
//giving noise<br />
imageline ($image, $rx1, $ry1, $rx2, $ry2, $rc1);<br />
}</p>
<p>    // Add randomly generated string in the image<br />
    for($i = 1; $i &lt;= $length; $i++) {<br />
        $counter = rand(1, 2);</p>
<p>        if ($counter == 1) {<br />
            $angle = rand(0, 45);<br />
        }<br />
        if ($counter == 2) {<br />
            $angle = rand(315, 360);<br />
        }</p>
<p>imagettftext($image, rand(14, 20), $angle, ($i * 25), 30, $text, &quot;font/LucidaBrightDemiItalic.ttf&quot;, substr($code, ($i - 1), 1));<br />
    }</p>
<p>    // Add a border<br />
    imagerectangle($image, 0, 0, $width - 1, $height - 1, $text); </p>
<p>    // Tell the browser what kind of file is come in<br />
    header(&quot;Content-Type: image/png&quot;); </p>
<p>    // Output the newly created image in jpeg format<br />
    imagepng($image);</p>
<p>    // Free up resources<br />
    imagedestroy($image);<br />
}</p>
<p>?&gt;</p>
<p></code></p>
<p>this code into that file.</p>
<p>You see &#8220;LucidaBrightDemiItalic.ttf&#8221;.I have this font in font directory.You can use ur font.And that will be your font style of captcha.But remember you have to put font file in the directory or Sub-directory where your php file will stay.</p>
<p>Now include this file in any other php file and make a call with</p>
<p><code><br />
captcha(4);<br />
</code></p>
<p>here 4 is the number of character you want to show.You can give your length of string.Here we use session to store the captcha string in $_SESSION global array.Since we have to use this later, to check whether the user submit the data or not.So that&#8217;s it.<br />
And &#8220;<strong>Have a good programming</strong>&#8220;</p>
Posted in PHP  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saiful103a.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saiful103a.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saiful103a.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saiful103a.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saiful103a.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saiful103a.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saiful103a.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saiful103a.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saiful103a.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saiful103a.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=62&subd=saiful103a&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://saiful103a.wordpress.com/2009/07/21/again-php-captcha-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bab5872a632f4937715f34fcdb080ed9?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">saiful103a</media:title>
		</media:content>
	</item>
		<item>
		<title>java oracle connection</title>
		<link>http://saiful103a.wordpress.com/2009/07/16/java-oracle-connection/</link>
		<comments>http://saiful103a.wordpress.com/2009/07/16/java-oracle-connection/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 03:53:51 +0000</pubDate>
		<dc:creator>saiful103a</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://saiful103a.wordpress.com/?p=58</guid>
		<description><![CDATA[Tomorrow i was trying to connect my java program with oracle server.It was not easy for me to do this.Since i&#8217;m a new learner.I google it about half an hour.I read every page that seems to me helpful.Then i finally got the solution.If i describe you,you will be astonished and will say to yourself it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=58&subd=saiful103a&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Tomorrow i was trying to connect my java program with oracle server.It was not easy for me to do this.Since i&#8217;m a new learner.I google it about half an hour.I read every page that seems to me helpful.Then i finally got the solution.If i describe you,you will be astonished and will say to yourself it is nothing at all.Then let go&#8230;</p>
<p>Check your configuration with mine:<br />
OS: Windows Xp<br />
JDK Version: JDK1.6<br />
IDE: Any ide or compiler will work<br />
Oracle:10g</p>
<p>open ur ide or compiler. now create a new project &#8216;database&#8217;.When you will give ur project name meantime you have to notice that anywhere there is a option that have classpath or not.If there is open your classpath settings.Now add a new class.Locate this class to</p>
<p><strong> &#8230;oracle/product/10.1.0/db_2/jdbc/lib/ojdbc14.jar </strong></p>
<p>If you you don&#8217;t have ojdbc14.jar then ojdbc[].jar can work for you.Try it.Or you can download it.From oracle website.</p>
<p>ok,now we locate a class that can connect our jdk with oracle.</p>
<p>If you know in which port your oracle server is active then ok,if not<br />
open you <strong>command prompt</strong> in your windows<br />
now type <strong>lsnrctl status</strong><br />
what have you seen.From results you will find</p>
<p>     <strong>  Listening Endpoints Summary&#8230;<br />
        (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))<br />
        (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myhostname)(<em>PORT=1521</em>)))</strong></p>
<p>now we need the name of SID<br />
 Now open your sql+ window from oracle<br />
type<br />
<strong><em>show parameter db_name</em></strong></p>
<p>you will get a value [for me it was <strong><em>oracl</em></strong>]</p>
<p>this.So <strong>PORT=1521</strong> is your port no.<br />
Now,In your project creat a new file named &#8216;database.java&#8217;</p>
<p><code><br />
import java.sql.*;</p>
<p>public class database<br />
{<br />
        public static void main(String[] args)<br />
        {<br />
                DB db = new DB();<br />
                Connection conn=db.dbConnect(<br />
                  <strong>"jdbc:oracle:oci:@localhost:1521:oracl", "username", "pasword");</strong><br />
        }</p>
<p>}</p>
<p>class DB<br />
{<br />
        public DB() {}</p>
<p>        public Connection dbConnect(String db_connect_string,<br />
          String db_userid, String db_password)<br />
        {<br />
                try<br />
                {<br />
                        DriverManager.registerDriver(<br />
                          new oracle.jdbc.OracleDriver());</p>
<p>                        Connection conn = DriverManager.getConnection(<br />
                          db_connect_string, db_userid, db_password);</p>
<p>                        System.out.println("Connection Successful");<br />
                        return conn;</p>
<p>                }<br />
                catch (Exception e)<br />
                {<br />
                        e.printStackTrace();<br />
                        return null;<br />
                }<br />
        }<br />
};<br />
</code></p>
<p>And that&#8217;s it.And it is definitely worked for me.Hope,will work for you too.Have a nice programming.</p>
Posted in Java, Oracle  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saiful103a.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saiful103a.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saiful103a.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saiful103a.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saiful103a.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saiful103a.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saiful103a.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saiful103a.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saiful103a.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saiful103a.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=58&subd=saiful103a&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://saiful103a.wordpress.com/2009/07/16/java-oracle-connection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bab5872a632f4937715f34fcdb080ed9?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">saiful103a</media:title>
		</media:content>
	</item>
		<item>
		<title>Starting oracle..</title>
		<link>http://saiful103a.wordpress.com/2009/07/11/starting-oracle/</link>
		<comments>http://saiful103a.wordpress.com/2009/07/11/starting-oracle/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 04:54:10 +0000</pubDate>
		<dc:creator>saiful103a</dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://saiful103a.wordpress.com/?p=55</guid>
		<description><![CDATA[This semester we are going to do a course named &#8216;Database System&#8217;.Under this course we have to do a database[oracle] lab course.Yes, i was waiting for this course when i first understand what can be done with database.Though i am familiar with mysql but oracle is oracle not mysql.Though my mysql concept will help me [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=55&subd=saiful103a&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This semester we are going to do a course named &#8216;Database System&#8217;.Under this course we have to do a database[oracle] lab course.Yes, i was waiting for this course when i first understand what can be done with database.Though i am familiar with mysql but oracle is oracle not mysql.Though my mysql concept will help me to understand.Like, we are going to do sql in first step.And i&#8217;ve already completed the half of sql part.Though yet we do not started our lab.And it&#8217;s not that so hard.I am loving it.I will post if i came to know new things in it.</p>
Posted in Oracle  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saiful103a.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saiful103a.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saiful103a.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saiful103a.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saiful103a.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saiful103a.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saiful103a.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saiful103a.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saiful103a.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saiful103a.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=55&subd=saiful103a&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://saiful103a.wordpress.com/2009/07/11/starting-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bab5872a632f4937715f34fcdb080ed9?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">saiful103a</media:title>
		</media:content>
	</item>
		<item>
		<title>learning&#8230;&#8230;</title>
		<link>http://saiful103a.wordpress.com/2009/07/08/learning/</link>
		<comments>http://saiful103a.wordpress.com/2009/07/08/learning/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 00:44:32 +0000</pubDate>
		<dc:creator>saiful103a</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://saiful103a.wordpress.com/?p=49</guid>
		<description><![CDATA[I&#8217;ve already learned many things after i&#8217;ve started blogging.Though some of them i understood but many of them i don&#8217;t.Many of them was not just only knowing things ,because those need to examine in a remote server where i always try to find things in my local server.I&#8217;ve tried for few free hosting space but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=49&subd=saiful103a&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve already learned many things after i&#8217;ve started blogging.Though some of them i understood but many of them i don&#8217;t.Many of them was not just only knowing things ,because those need to examine in a remote server where i always try to find things in my local server.I&#8217;ve tried for few free hosting space but they don&#8217;t have those things that i need.Though i have tried one.But what happened ,after a few days it blocked my account.what am i gonna do now.Now i have to try, to buy some hosting space for me.</p>
Posted in PHP  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saiful103a.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saiful103a.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saiful103a.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saiful103a.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saiful103a.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saiful103a.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saiful103a.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saiful103a.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saiful103a.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saiful103a.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=49&subd=saiful103a&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://saiful103a.wordpress.com/2009/07/08/learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bab5872a632f4937715f34fcdb080ed9?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">saiful103a</media:title>
		</media:content>
	</item>
		<item>
		<title>create you own captcha</title>
		<link>http://saiful103a.wordpress.com/2009/07/05/create-you-own-captcha/</link>
		<comments>http://saiful103a.wordpress.com/2009/07/05/create-you-own-captcha/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 13:11:23 +0000</pubDate>
		<dc:creator>saiful103a</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://saiful103a.wordpress.com/?p=46</guid>
		<description><![CDATA[Somedays ago i&#8217;ve found a php captcha script from one of my php boss bhaia.But i don&#8217;t understand why his script does not work in my local server.But whatever i&#8217;ve made one of my own with the help of his script.
You can say it,2nd version of his script for me.
here what i&#8217;ve got.
&#60;?php
  $im [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=46&subd=saiful103a&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Somedays ago i&#8217;ve found a php captcha script from one of my php boss bhaia.But i don&#8217;t understand why his script does not work in my local server.But whatever i&#8217;ve made one of my own with the help of his script.<br />
You can say it,2nd version of his script for me.</p>
<p>here what i&#8217;ve got.</p>
<p><code>&lt;?php<br />
  $im = imagecreate(60, 30);<br />
  $RandomStr = md5(microtime());</p>
<p>    $ResultStr = substr($RandomStr,0,5);<br />
  $bg = imagecolorallocate($im, 200, 255, 255);<br />
  $textcolor = imagecolorallocate($im, 200, 0, 255);<br />
  imagestring($im, 5, 6, 6, $ResultStr, $textcolor);</p>
<p>  header("Content-type: image/jpg");<br />
  imagejpeg($im);<br />
?&gt;</code><br />
 now name it <strong>captcha.php</strong><br />
now if you want to use it in a form or somwhere else you just write this:</p>
<p><strong><code> &lt;img src="captcha.php"/&gt; </code></strong></p>
<p>done</p>
Posted in PHP  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saiful103a.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saiful103a.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saiful103a.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saiful103a.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saiful103a.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saiful103a.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saiful103a.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saiful103a.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saiful103a.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saiful103a.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=46&subd=saiful103a&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://saiful103a.wordpress.com/2009/07/05/create-you-own-captcha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bab5872a632f4937715f34fcdb080ed9?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">saiful103a</media:title>
		</media:content>
	</item>
		<item>
		<title>is this site live or dead</title>
		<link>http://saiful103a.wordpress.com/2009/07/04/is-this-site-live-or-dead/</link>
		<comments>http://saiful103a.wordpress.com/2009/07/04/is-this-site-live-or-dead/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 00:25:59 +0000</pubDate>
		<dc:creator>saiful103a</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://saiful103a.wordpress.com/?p=44</guid>
		<description><![CDATA[sometimes we need to import data from other site though we don&#8217;t know when we need to use their data from their site,will this site alive or dead?We can fix this problem via a php function called fsockopen,now i have a script that can work for you to understand more precisely
&#60;?php
$up = @fsockopen("www.wordpress.com", 80, $errno, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=44&subd=saiful103a&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>sometimes we need to import data from other site though we don&#8217;t know when we need to use their data from their site,will this site alive or dead?We can fix this problem via a php function called <strong>fsockopen</strong>,now i have a script that can work for you to understand more precisely</p>
<p><code>&lt;?php</p>
<p>$up = @fsockopen("www.wordpress.com", 80, $errno, $errstr, 30);<br />
  if($up)<br />
	{<br />
	  echo "WordPress is <a href='http://www.wordpress.com'>Alive</a>";<br />
	}<br />
	else<br />
	{<br />
	  echo "Sorry this site is not available now";<br />
	}<br />
?&gt;<br />
</code></p>
<p>that&#8217;s it. Now check it out.</p>
Posted in PHP  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saiful103a.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saiful103a.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saiful103a.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saiful103a.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saiful103a.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saiful103a.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saiful103a.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saiful103a.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saiful103a.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saiful103a.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saiful103a.wordpress.com&blog=6189037&post=44&subd=saiful103a&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://saiful103a.wordpress.com/2009/07/04/is-this-site-live-or-dead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bab5872a632f4937715f34fcdb080ed9?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">saiful103a</media:title>
		</media:content>
	</item>
	</channel>
</rss>