<?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>Dream House &#187; My Works</title>
	<atom:link href="http://sajjadhossain.com/category/my-works/feed/" rel="self" type="application/rss+xml" />
	<link>http://sajjadhossain.com</link>
	<description>Courage to do something...</description>
	<lastBuildDate>Wed, 10 Mar 2010 05:55:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SSL (HTTPS) URLs and CodeIgniter</title>
		<link>http://sajjadhossain.com/2008/10/27/ssl-https-urls-and-codeigniter/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://sajjadhossain.com/2008/10/27/ssl-https-urls-and-codeigniter/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 10:40:23 +0000</pubDate>
		<dc:creator>Mohammad Sajjad Hossain</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[My Works]]></category>

		<guid isPermaLink="false">http://sajjadhossain.com/?p=55</guid>
		<description><![CDATA[I am a fan of CodeIgniter for its ease of use. I have developed several ecommerce projects using this &#8220;beautiful&#8221; framework. While working on my first ecommerce project with CodeIgniter, I faced a problem with URLs. The site was suppose to use both &#8220;http&#8221; and &#8220;https&#8221;. But with CodeIgnitor we can define one base URL, [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-111" title="ci_logo_flame" src="http://sajjadhossain.com/wp-content/uploads/2008/10/ci_logo_flame.jpg" alt="ci logo flame SSL (HTTPS) URLs and CodeIgniter" width="150" height="164" />I am a fan of CodeIgniter for its ease of use. I have developed several ecommerce projects using this &#8220;beautiful&#8221; framework. While working on my first ecommerce project with CodeIgniter, I faced a problem with URLs. The site was suppose to use both &#8220;http&#8221; and &#8220;https&#8221;. But with CodeIgnitor we can define one base URL, which can be either &#8220;http&#8221; or &#8220;https&#8221;. Then I came up with an idea and now I am going to share that idea with you.</p>
<p><strong>What I am going to do&#8230;</strong></p>
<p>We will create secure version of some functions. For this we will make changes in CodeIgnitor&#8217;s URL helper(url_helper.php), Config library (Config.php) and Config (config.php)  files. We will be creating secure version of following functions:</p>
<ul>
<li>site_url()</li>
<li>base_url()</li>
<li>anchor()</li>
<li>redirect()</li>
</ul>
<p><strong>Lets&#8217; start&#8230;</strong></p>
<p>First we will add the following config element in the config file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$config</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'secure_base_url'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'https://examples.com'</span><span style="color: #339933;">;</span></pre></div></div>

<p>Then, open the url_helper.php file (system/helpers/url_helper.php) and add the following codes. You may use a separate helper file if you do not want to alter the url_helper.php file.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'secure_site_url'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">function</span> secure_site_url<span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$CI</span> <span style="color: #339933;">=&amp;</span> get_instance<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #000088;">$CI</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">secure_site_url</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'secure_base_url'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">function</span> secure_base_url<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$CI</span> <span style="color: #339933;">=&amp;</span> get_instance<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #000088;">$CI</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">slash_item</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'secure_base_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'secure_anchor'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">function</span> secure_anchor<span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #000088;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #000088;">$attributes</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$title</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>string<span style="color: #009900;">&#41;</span> <span style="color: #000088;">$title</span><span style="color: #339933;">;</span>
&nbsp;
        <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;">$uri</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$secure_site_url</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span> <span style="color: #990000;">preg_match</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'!^\w+://! i'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$uri</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> ? secure_site_url<span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$uri</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #b1b100;">else</span>
        <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$secure_site_url</span> <span style="color: #339933;">=</span> secure_site_url<span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</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: #000088;">$title</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$title</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$secure_site_url</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: #000088;">$attributes</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$attributes</span> <span style="color: #339933;">=</span> _parse_attributes<span style="color: #009900;">&#40;</span><span style="color: #000088;">$attributes</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;a href=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$secure_site_url</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$title</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/a&gt;'</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'secure_redirect'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">function</span> secure_redirect<span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #000088;">$method</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'location'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$http_response_code</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">302</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">switch</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$method</span><span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            <span style="color: #b1b100;">case</span> <span style="color: #0000ff;">'refresh'</span>    <span style="color: #339933;">:</span> <span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Refresh:0;url=&quot;</span><span style="color: #339933;">.</span>secure_site_url<span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
            <span style="color: #b1b100;">default</span>            <span style="color: #339933;">:</span> <span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Location: &quot;</span><span style="color: #339933;">.</span>secure_site_url<span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">TRUE</span><span style="color: #339933;">,</span> <span style="color: #000088;">$http_response_code</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #990000;">exit</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Now, add the following code in Config.php file (system/libraries/Config.php):</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">    <span style="color: #000000; font-weight: bold;">function</span> secure_site_url<span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</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;">is_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$uri</span> <span style="color: #339933;">=</span> <span style="color: #990000;">implode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$uri</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: #000088;">$uri</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            <span style="color: #b1b100;">return</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">slash_item</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'secure_base_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">item</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'index_page'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #b1b100;">else</span>
        <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$suffix</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">item</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'url_suffix'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #009900; font-weight: bold;">FALSE</span><span style="color: #009900;">&#41;</span> ? <span style="color: #0000ff;">''</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">item</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'url_suffix'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
           <span style="color: #b1b100;">return</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">slash_item</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'secure_base_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">slash_item</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'index_page'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #990000;">preg_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;|^/*(.+?)/*$|&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span>1&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$uri</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #000088;">$suffix</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span></pre></div></div>

<p><strong>Now what we have&#8230;</strong></p>
<p>Now what we have? We have secured versions of those function. You may now use them as their insecured version. Enjoy coding <img src='http://sajjadhossain.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' title="SSL (HTTPS) URLs and CodeIgniter" /> .</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsajjadhossain.com%2F2008%2F10%2F27%2Fssl-https-urls-and-codeigniter%2F&amp;linkname=SSL%20%28HTTPS%29%20URLs%20and%20CodeIgniter"><img src="http://sajjadhossain.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://sajjadhossain.com/2008/10/27/ssl-https-urls-and-codeigniter/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>cPanel: Class for creating email account and mail forwarder</title>
		<link>http://sajjadhossain.com/2008/07/15/cpanel-class-for-creating-email-account-and-mail-forwarder/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://sajjadhossain.com/2008/07/15/cpanel-class-for-creating-email-account-and-mail-forwarder/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 09:49:44 +0000</pubDate>
		<dc:creator>Mohammad Sajjad Hossain</dc:creator>
				<category><![CDATA[My Works]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[cpanel class]]></category>
		<category><![CDATA[mail creator]]></category>
		<category><![CDATA[mail forwader]]></category>

		<guid isPermaLink="false">http://sajjadhossain.com/?p=45</guid>
		<description><![CDATA[This class can be used to create email account and mail forwarders using PHP, without logging to cPanel. It is an extension of script made by www.zubrag.com. You can access the original link from here http://www.zubrag.com/scripts/cpanel-create-email-account.php. And it is also a modified version of the class &#8220;cpmail&#8221; which was coded by Md. Zakir Hossain (Raju), [...]


Related posts:<ol><li><a href='http://sajjadhossain.com/2008/04/24/paging-class-using-php-and-mysql/' rel='bookmark' title='Permanent Link: Paging Class using PHP and MySQL'>Paging Class using PHP and MySQL</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-116" title="cpanel_logo" src="http://sajjadhossain.com/wp-content/uploads/2008/07/cpanel_logo.jpg" alt="cpanel logo cPanel: Class for creating email account and mail forwarder" width="190" height="90" />This class can be used to create email account and mail forwarders using PHP, without logging to cPanel.  It is an extension of script made by www.zubrag.com. You can access the original link from here http://www.zubrag.com/scripts/cpanel-create-email-account.php. And it is also a modified version of the class &#8220;cpmail&#8221; which was coded by Md. Zakir Hossain (Raju), http://www.rajuru.xenexbd.com.  <strong>How to configure:</strong></p>
<ol>
<li><a title="Download cPanel Manager" href="http://sajjadhossain.com/wp-content/uploads/2008/07/cpmailmanager10.rar#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed">Download</a> the zipped file.</li>
<li>Unzip the file. This file contains the class file and an example file.</li>
<li>Open the class file and change these variables -
<ul>
<li>$currentTheme &#8211; Your cPanel theme</li>
<li>$userName &#8211; Your cPanel user name</li>
<li>$password &#8211; Your cPanel password</li>
<li>$domain &#8211; Your cPanel domain</li>
<li>$cPanelPort &#8211; Your cPanel port [optional]</li>
</ul>
</li>
<li>Include the class in the file where you want to use it.</li>
</ol>
<p><strong>Example:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// include the class file</span>
<span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'class.cpmailmanager.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// create an instanse of the class</span>
<span style="color: #000088;">$cp</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> CPMailManager<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// create an email account</span>
<span style="color: #000088;">$cp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">createEmail</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'sadat'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'sadat123'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</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: #000088;">$cp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">status</span><span style="color: #009900;">&#41;</span> <span style="color: #666666; font-style: italic;">//account created successfully</span>
<span style="color: #009900;">&#123;</span>
     <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'Mail created successfully'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">else</span>
<span style="color: #009900;">&#123;</span>
     <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$cp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">message</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// create mail forwarder</span>
<span style="color: #000088;">$cp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">createForwarder</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'sadat'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'msh@example.com'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">''</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$cp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">message</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// delete mail forwarder</span>
<span style="color: #000088;">$cp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">deleteForwarder</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'sadat'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'msh@example.com'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">''</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$cp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">message</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// delete email account</span>
<span style="color: #000088;">$cp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">deleteEmail</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'sadat'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">''</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$cp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">message</span><span style="color: #339933;">;</span></pre></div></div>

<p><a title="cPanel Mail Manager" href="http://sajjadhossain.com/wp-content/uploads/2008/07/cpmailmanager10.rar#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img class="alignleft size-full wp-image-6" style="float: left;" src="http://sajjadhossain.com/wp-content/uploads/2008/01/download.gif" alt="download cPanel: Class for creating email account and mail forwarder" width="95" height="20" title="cPanel: Class for creating email account and mail forwarder" /></a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsajjadhossain.com%2F2008%2F07%2F15%2Fcpanel-class-for-creating-email-account-and-mail-forwarder%2F&amp;linkname=cPanel%3A%20Class%20for%20creating%20email%20account%20and%20mail%20forwarder"><img src="http://sajjadhossain.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://sajjadhossain.com/2008/04/24/paging-class-using-php-and-mysql/' rel='bookmark' title='Permanent Link: Paging Class using PHP and MySQL'>Paging Class using PHP and MySQL</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://sajjadhossain.com/2008/07/15/cpanel-class-for-creating-email-account-and-mail-forwarder/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Paging Class using PHP and MySQL</title>
		<link>http://sajjadhossain.com/2008/04/24/paging-class-using-php-and-mysql/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://sajjadhossain.com/2008/04/24/paging-class-using-php-and-mysql/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 17:21:30 +0000</pubDate>
		<dc:creator>Mohammad Sajjad Hossain</dc:creator>
				<category><![CDATA[My Works]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[code for php pagination]]></category>
		<category><![CDATA[code for php paging]]></category>
		<category><![CDATA[pagination]]></category>
		<category><![CDATA[pagination class]]></category>
		<category><![CDATA[paging]]></category>
		<category><![CDATA[paging class]]></category>
		<category><![CDATA[php pagination]]></category>
		<category><![CDATA[php paging]]></category>

		<guid isPermaLink="false">http://sajjadhossain.com/2008/04/24/paging-class-using-php-and-mysql/</guid>
		<description><![CDATA[Based on my last post on paging using PHP and MySQL, I have coded this class. It is very easy to implement and it will save your time. Here is a code snippet to show how simple to use it. //include the class file include&#40;'Pager.php'&#41;; &#160; //making connection to the database mysql_connect&#40;'localhost', 'root', ''&#41;; mysql_select_db&#40;'test'&#41;; [...]


Related posts:<ol><li><a href='http://sajjadhossain.com/2008/03/09/paging-using-php-and-mysql/' rel='bookmark' title='Permanent Link: Paging using PHP and MySQL'>Paging using PHP and MySQL</a></li>
<li><a href='http://sajjadhossain.com/2008/07/15/cpanel-class-for-creating-email-account-and-mail-forwarder/' rel='bookmark' title='Permanent Link: cPanel: Class for creating email account and mail forwarder'>cPanel: Class for creating email account and mail forwarder</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Based on my last post on <a href="http://sajjadhossain.com/2008/03/09/paging-using-php-and-mysql/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed" target="_blank">paging using PHP and MySQL</a>, I have coded this class. It is very easy to implement and it will save your time. Here is a code snippet to show how simple to use it.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//include the class file</span>
<span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Pager.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//making connection to the database</span>
<span style="color: #990000;">mysql_connect</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'localhost'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'root'</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: #990000;">mysql_select_db</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'test'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//prepare SQL</span>
<span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'SELECT * FROM books'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//create an object of Pager passing the SQL</span>
<span style="color: #000088;">$pager</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Pager<span style="color: #009900;">&#40;</span><span style="color: #000088;">$sql</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//set the url. this is the current page</span>
<span style="color: #000088;">$pager</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'index.php'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//set number of rows. by default it is 10</span>
<span style="color: #000088;">$pager</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">rowPerPage</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">5</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//build the pager</span>
<span style="color: #000088;">$pager</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">build</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//get paged data</span>
<span style="color: #000088;">$rows</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$pager</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getPagedData</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Click the download link given below for a copy of the class. It also includes an working example.</p>
<p><a href="http://sajjadhossain.com/wp-content/uploads/2008/04/pager.rar#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed" title="Pager - Paging class for PHP and MySQL"><img src="http://sajjadhossain.com/wp-content/uploads/2008/01/download.gif" alt="Download" border="0" title="Paging Class using PHP and MySQL" /></a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsajjadhossain.com%2F2008%2F04%2F24%2Fpaging-class-using-php-and-mysql%2F&amp;linkname=Paging%20Class%20using%20PHP%20and%20MySQL"><img src="http://sajjadhossain.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://sajjadhossain.com/2008/03/09/paging-using-php-and-mysql/' rel='bookmark' title='Permanent Link: Paging using PHP and MySQL'>Paging using PHP and MySQL</a></li>
<li><a href='http://sajjadhossain.com/2008/07/15/cpanel-class-for-creating-email-account-and-mail-forwarder/' rel='bookmark' title='Permanent Link: cPanel: Class for creating email account and mail forwarder'>cPanel: Class for creating email account and mail forwarder</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://sajjadhossain.com/2008/04/24/paging-class-using-php-and-mysql/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Date control using JavaScript</title>
		<link>http://sajjadhossain.com/2008/03/13/date-control-using-javascript/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://sajjadhossain.com/2008/03/13/date-control-using-javascript/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 07:21:00 +0000</pubDate>
		<dc:creator>Mohammad Sajjad Hossain</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[My Works]]></category>
		<category><![CDATA[date control]]></category>
		<category><![CDATA[date field]]></category>
		<category><![CDATA[date picker]]></category>
		<category><![CDATA[form date cotrol]]></category>
		<category><![CDATA[javascript date control]]></category>
		<category><![CDATA[javascript date field]]></category>

		<guid isPermaLink="false">http://sajjadhossain.com/?p=29</guid>
		<description><![CDATA[Date control is a combination of three drop downs with month, day and year valus. It can be used as an alternative to the date picker control. Suppose a user needs to select a date before/after 10 years. At this point selecting the date with a date picker will not be easy and time consuming. [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Date control is a combination of three drop downs with month, day and year valus. It can be used as an alternative to the date picker control. Suppose a user needs to select a date before/after 10 years. At this point selecting the date with a date picker will not be easy and time consuming. So, in this situation, this control may be helpful.</p>
<p><img src="http://sajjadhossain.com/wp-content/uploads/2008/03/date_control.gif" alt="Date control" title="Date control using JavaScript" /></p>
<p>To customize you need you can configure it. Change the properties in date_control.js file.</p>
<p><strong>How to use it?</strong></p>
<p>1. Unzip the download<br />
2. Link the date_control to the page you want to use it in.<br />
3. Write this code where you want to place the control</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script language<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;javascript&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #006600; font-style: italic;">// getting the date control</span>
getDateControl<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;name_of_the_field&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;name_of_the_form&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>For more details see the demo.html file included in the download.</p>
<p>I have tested the code with Internet Explorer 6 and FireFox 2.X.X and it works fine.</p>
<p>You can download a copy from here:  <a href="http://sajjadhossain.com/wp-content/uploads/2008/03/data_control.rar#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed" target="_blank" title="Date Control Download"><img src="http://sajjadhossain.com/wp-content/uploads/2008/01/download.gif" alt="Download" align="absmiddle" border="0" title="Date control using JavaScript" /></a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsajjadhossain.com%2F2008%2F03%2F13%2Fdate-control-using-javascript%2F&amp;linkname=Date%20control%20using%20JavaScript"><img src="http://sajjadhossain.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://sajjadhossain.com/2008/03/13/date-control-using-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FS Snake &amp; Lader 1.0</title>
		<link>http://sajjadhossain.com/2008/02/25/fs-snake-lader-10/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://sajjadhossain.com/2008/02/25/fs-snake-lader-10/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 17:04:27 +0000</pubDate>
		<dc:creator>Mohammad Sajjad Hossain</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[My Works]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[snake and ladder]]></category>
		<category><![CDATA[vb game]]></category>

		<guid isPermaLink="false">http://sajjadhossain.com/?p=26</guid>
		<description><![CDATA[This game is based on a paper game, Snake and Ladder. You may have played this game before. I have added nothing more. I have just programmed it for my nephews and nieces. They give me the inspiration for designing and programming this game. Hope you will like it. Click this link if you want [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://sajjadhossain.com/wp-content/uploads/2008/02/fs_snk_lad.gif" alt="MSH Relation Calculator" title="FS Snake & Lader 1.0" /></p>
<p>This game is based on a paper game, Snake and Ladder. You may have played this game before. I have added nothing more. I have just programmed it for my nephews and nieces. They give me the inspiration for designing and programming this game. Hope you will like it.</p>
<p>Click this link if you want to download it <a href="http://sajjadhossain.com/wp-content/uploads/2008/02/fssnklad.zip#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img border="0" align="absMiddle" src="http://sajjadhossain.com/wp-content/uploads/2008/01/download.gif" alt="Download" title="FS Snake & Lader 1.0" /></a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsajjadhossain.com%2F2008%2F02%2F25%2Ffs-snake-lader-10%2F&amp;linkname=FS%20Snake%20%26%23038%3B%20Lader%201.0"><img src="http://sajjadhossain.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://sajjadhossain.com/2008/02/25/fs-snake-lader-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSH Mini Puzzle Game 1.0</title>
		<link>http://sajjadhossain.com/2008/02/25/msh-mini-puzzle-game-10/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://sajjadhossain.com/2008/02/25/msh-mini-puzzle-game-10/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 16:54:01 +0000</pubDate>
		<dc:creator>Mohammad Sajjad Hossain</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[My Works]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[puzzle]]></category>
		<category><![CDATA[puzzle game]]></category>

		<guid isPermaLink="false">http://sajjadhossain.com/?p=25</guid>
		<description><![CDATA[This is a puzzle game and it is freeware. You can freely distribute to your friends. It is mainly developed for children and for the beginners of computer operation. This will help them to improve their mouse movement. But anyone can play it and have fun. It is the first edition of the game. In this [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://sajjadhossain.com/wp-content/uploads/2008/02/mshpuzz.jpg" alt="MSH Mini Puzzle Game 1.0" title="MSH Mini Puzzle Game 1.0" /></p>
<p>This is a puzzle game and it is freeware. You can freely distribute to your friends. It is mainly developed for children and for the beginners of computer operation. This will help them to improve their mouse movement. But anyone can play it and have fun. It is the first edition of the game. In this edition I have included 5 pictures&#8217; puzzle. Hope you will enjoy the game.</p>
<p>To download a copy of the game click here <a href="http://sajjadhossain.com/wp-content/uploads/2008/02/MSHPuzzle.zip#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed" ><img border="0" align="absMiddle" src="http://sajjadhossain.com/wp-content/uploads/2008/01/download.gif" alt="Download" title="MSH Mini Puzzle Game 1.0" /></a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsajjadhossain.com%2F2008%2F02%2F25%2Fmsh-mini-puzzle-game-10%2F&amp;linkname=MSH%20Mini%20Puzzle%20Game%201.0"><img src="http://sajjadhossain.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://sajjadhossain.com/2008/02/25/msh-mini-puzzle-game-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSH Relation Calculator &#8211; My First Software</title>
		<link>http://sajjadhossain.com/2008/02/25/msh-relation-calculator-my-first-software/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://sajjadhossain.com/2008/02/25/msh-relation-calculator-my-first-software/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 16:26:16 +0000</pubDate>
		<dc:creator>Mohammad Sajjad Hossain</dc:creator>
				<category><![CDATA[My Works]]></category>

		<guid isPermaLink="false">http://sajjadhossain.com/?p=22</guid>
		<description><![CDATA[This is my first software developed with Visual Basic in 2003. It is a fun software. It looks like Love Calculator, but has difference in result. It does not show percentage. It describes the relation. As I told before it is a fun software, it may not be true all the time. I shall not [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://sajjadhossain.com/wp-content/uploads/2008/01/download.gif#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed" title="download.gif"></a><img src="http://sajjadhossain.com/wp-content/uploads/2008/02/mshrelcal.jpg" alt="MSH Relation Calculator" title="MSH Relation Calculator   My First Software" /></p>
<p>This is my first software developed with Visual Basic in 2003. It is a fun software. It looks like Love Calculator, but has difference in result. It does not show percentage. It describes the relation. As I told before it is a fun software, it may not be true all the time. I shall not tell you anything more. You may try it and don&#8217;t forget to send your comment.</p>
<p>You can download a copy from here <a href="http://sajjadhossain.com/wp-content/uploads/2008/02/msh_rel_cal.zip#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed" title="MSH Relation Calculator Download"><img src="http://sajjadhossain.com/wp-content/uploads/2008/01/download.gif" alt="Download" align="absmiddle" border="0" title="MSH Relation Calculator   My First Software" /></a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsajjadhossain.com%2F2008%2F02%2F25%2Fmsh-relation-calculator-my-first-software%2F&amp;linkname=MSH%20Relation%20Calculator%20%26%238211%3B%20My%20First%20Software"><img src="http://sajjadhossain.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://sajjadhossain.com/2008/02/25/msh-relation-calculator-my-first-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSH Test Emperor v1.0 &#8211; A MCQ Exam Engine for SCJP</title>
		<link>http://sajjadhossain.com/2008/01/03/msh-test-emperor-v10-a-mcq-exam-engine-for-scjp/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://sajjadhossain.com/2008/01/03/msh-test-emperor-v10-a-mcq-exam-engine-for-scjp/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 16:12:10 +0000</pubDate>
		<dc:creator>Mohammad Sajjad Hossain</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[My Works]]></category>
		<category><![CDATA[Exam Simulator]]></category>
		<category><![CDATA[Free Exam]]></category>
		<category><![CDATA[Free MCQ Exam]]></category>
		<category><![CDATA[MCQ Engine]]></category>
		<category><![CDATA[Multiple Choice Question]]></category>
		<category><![CDATA[SCJP]]></category>
		<category><![CDATA[Sun Certified Programmer for Java]]></category>

		<guid isPermaLink="false">http://sajjadhossain.com/?p=3</guid>
		<description><![CDATA[MSH Test Emperor, designed and developed by myself. I think it will be helpful to the peoples who are willing to attend the Sun Certified Programmer for Java exam. The exam engine contains a built in SCJP mock exam which serves 61 questions, randomly selected from a question set of 255 questions.This engine is developed [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>MSH Test Emperor, designed and developed by myself. I think it will be helpful to the peoples who are willing to attend the Sun Certified Programmer for Java exam. The exam engine contains a built in SCJP mock exam which serves 61 questions, randomly selected from a question set of 255 questions.This engine is developed totally with Java. After passing the SCJP exam, I have developed this engine.</p>
<p><a href="http://sajjadhossain.com/mcq-exam-engine/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed" title="MCQ Exam Engine">More &gt;&gt;</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fsajjadhossain.com%2F2008%2F01%2F03%2Fmsh-test-emperor-v10-a-mcq-exam-engine-for-scjp%2F&amp;linkname=MSH%20Test%20Emperor%20v1.0%20%26%238211%3B%20A%20MCQ%20Exam%20Engine%20for%20SCJP"><img src="http://sajjadhossain.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://sajjadhossain.com/2008/01/03/msh-test-emperor-v10-a-mcq-exam-engine-for-scjp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
