<?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>iWP - Philippines Website &#38; Web Application Development Company</title>
	<atom:link href="http://iwebprovider.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://iwebprovider.com</link>
	<description>A Web Development Company based in Cagayan de Oro City, Philippines which aim to provide world class web development services at cost effective rates.</description>
	<lastBuildDate>Wed, 01 May 2013 05:00:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Configuring CodeIgniter for website with HTTPS protocol</title>
		<link>http://iwebprovider.com/configuring-codeigniter-for-website-with-https-protocol/</link>
		<comments>http://iwebprovider.com/configuring-codeigniter-for-website-with-https-protocol/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 03:27:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://iwebprovider.com/?p=584</guid>
		<description><![CDATA[Do you have problem what to do if your website is going to be SSL and will be having HTTPS protocol and you are using CodeIgniter? Well the answer this, at Configuration file of CodeIgniter, do this: system\application\config\config.php Instead of the usual $config['base_url'] = 'http://www.mydomain.com'; Do this below: $config['base_url'] = (isset($_SERVER['HTTPS']) ? 'https://' : 'http://') [...]]]></description>
				<content:encoded><![CDATA[<p>Do you have problem what to do if your website is going to be SSL and will be having HTTPS protocol and you are using CodeIgniter?<br />
Well the answer this, at Configuration file of CodeIgniter, do this:<br />
system\application\config\config.php<br />
Instead of the usual</p>
<pre>
$config['base_url'] = 'http://www.mydomain.com';
</pre>
<p>Do this below:</p>
<pre>
$config['base_url'] = (isset($_SERVER['HTTPS']) ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'];
</pre>
<p>Also if you want that even if users visit your site using HTTP protocol like http://www.mydomain.com,<br />
it should redirect to HTTPS (https://www.mydomain.com), add the code below to your .htaccess file.
</p>
<pre>
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
</pre>
<p>.htaccess example:</p>
<pre>
RewriteEngine On
RewriteBase /

RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</pre>
]]></content:encoded>
			<wfw:commentRss>http://iwebprovider.com/configuring-codeigniter-for-website-with-https-protocol/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Keyword &#8220;Cagayan de Oro PHP Programmer&#8221; iWebProvider.com is Number 1 at Google Search</title>
		<link>http://iwebprovider.com/keyword-cagayan-de-oro-php-programmer-iwebprovider-com-is-number-1-at-google-search/</link>
		<comments>http://iwebprovider.com/keyword-cagayan-de-oro-php-programmer-iwebprovider-com-is-number-1-at-google-search/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 09:54:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://iwebprovider.com/?p=474</guid>
		<description><![CDATA[We have have search the keyword &#8220;Cagayan de Oro PHP Programmer&#8221; and we are number 1 page 1 at Google Search. Yes we are proud of it&#8230; Also Keyword &#8220;cagayan de oro web developer&#8221; we are Number 1.]]></description>
				<content:encoded><![CDATA[<p>We have have search the keyword &#8220;Cagayan de Oro PHP Programmer&#8221; and we are number 1 page 1 at Google Search.<br />
Yes we are proud of it&#8230;<br />
Also Keyword &#8220;cagayan de oro web developer&#8221; we are Number 1.<br />
<a rel="attachment wp-att-477" href="http://iwebprovider.com/keyword-cagayan-de-oro-php-programmer-iwebprovider-com-is-number-1-at-google-search/google_search/"><img class="alignnone size-full wp-image-477" title="google_search" src="http://iwebprovider.com/wp-content/themes/iwebprovider/uploads/2011/02/google_search.jpg" alt="" width="754" height="355" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://iwebprovider.com/keyword-cagayan-de-oro-php-programmer-iwebprovider-com-is-number-1-at-google-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP get root URL and root Directory path</title>
		<link>http://iwebprovider.com/php-get-root-url-and-root-directory-path/</link>
		<comments>http://iwebprovider.com/php-get-root-url-and-root-directory-path/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 02:47:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://iwebprovider.com/?p=467</guid>
		<description><![CDATA[This is a PHP code that gets the root or base path your website. By getting the protocol, the domain name and its directory location, if combine together will produce the root URL of your website. By removing also index.php on array variable $_SERVER['SCRIPT_FILENAME'] will produce the root directory path of your website. This code [...]]]></description>
				<content:encoded><![CDATA[<p>This is a PHP code that gets the root or base path your website. By getting the protocol, the domain name and its directory location, if combine together will produce the root URL of your website. By removing also index.php on array variable $_SERVER['SCRIPT_FILENAME'] will produce the root directory path of your website.<br />
This code is dynamic that even if you will change your website directory location it will still knows its location. You don&#8217;t have to change any configuration just to get the URL and Directory location of your file or website.</p>
<pre>&lt;?php
function root_url(){

	$domain = $_SERVER['HTTP_HOST'];
	$protocol_array = explode('/',$_SERVER['SERVER_PROTOCOL']);
	$protocol = strtolower($protocol_array[0]);

	$path = str_replace( basename($_SERVER['SCRIPT_FILENAME']), '', $_SERVER['PHP_SELF'] );

	$url = $protocol.'://'.$domain.$path;

	return $url;
}

function root_dir(){

	$dir = dirname($_SERVER['SCRIPT_FILENAME']).'/';

	return $dir;
}
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://iwebprovider.com/php-get-root-url-and-root-directory-path/feed/</wfw:commentRss>
		<slash:comments>147</slash:comments>
		</item>
		<item>
		<title>PHP Object Oriented Programming (OOP) using Model View Controller (MVC) approach</title>
		<link>http://iwebprovider.com/php-object-oriented-programming-oop-using-model-view-controller-mvc-approach/</link>
		<comments>http://iwebprovider.com/php-object-oriented-programming-oop-using-model-view-controller-mvc-approach/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 13:56:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://iwebprovider.com/?p=438</guid>
		<description><![CDATA[This is a tutorial and example on PHP Object Oriented Programming (OOP) using Model View Controller (MVC) approach. It has a simple secure Session login. It is secure from the following: - SQL injection. - Multiple random login attempt - Cross Site Scripting This approach are using the following OOP features: - Class - Abstract [...]]]></description>
				<content:encoded><![CDATA[<p>This is a tutorial and example on PHP Object Oriented Programming (OOP) using Model View Controller (MVC) approach.<br />
It has a simple secure Session login.</p>
<p>It is secure from the following:<br />
- SQL injection.<br />
- Multiple random login attempt<br />
- Cross Site Scripting</p>
<p>This approach are using the following OOP features:<br />
- Class<br />
- Abstract Class<br />
- Inheritance (Extending a class)<br />
- Visibility (public, private, protected)<br />
- Interfaces</p>
<p>MVC features:<br />
- Model model.php<br />
- View<br />
&#8212; view/login.php<br />
&#8212; view/defaults.php<br />
- Controller controller.php</p>
<p><a rel="attachment wp-att-451" href="http://iwebprovider.com/?attachment_id=451"><img class="alignnone size-full wp-image-451" title="mvc" src="http://iwebprovider.com/wp-content/themes/iwebprovider/uploads/2011/02/mvc.jpg" alt="" width="467" height="312" /></a><br />
MVC flowchart hierarchy:</p>
<pre>/* config.php */
abstract class Config {
}
/* database.php parent config.php */
interface intDB {
}
abstract class DB extends Config implements intDB {
}
/* methods.php parent database.php */
interface intMethods {
}
class Methods extends DB implements intMethods {
}

/* model.php parent methods.php */
class modelBlog extends Methods {
}
/* controller.php parent model.php */
class controllerBlog extends modelBlog {
}
/* view/login.php */
/* view/defaults.php */

/*
execute index.php
new controllerBlog();
*/
</pre>
<p>Installation:<br />
- Unzip blog_20110213.zip to your htdocs<br />
- Import database blog.sql using database name blog<br />
- Run it with this url http://localhost/blog/index.php<br />
- Login default are username: user and password: user</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebprovider.com/php-object-oriented-programming-oop-using-model-view-controller-mvc-approach/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hard work surpasses genius</title>
		<link>http://iwebprovider.com/hard-work-surpasses-genius/</link>
		<comments>http://iwebprovider.com/hard-work-surpasses-genius/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 17:14:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wise Words]]></category>

		<guid isPermaLink="false">http://iwebprovider.com/?p=435</guid>
		<description><![CDATA[Mark]]></description>
				<content:encoded><![CDATA[<p>Mark</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebprovider.com/hard-work-surpasses-genius/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launching of the new 2011 iWebProvider.com Template Design</title>
		<link>http://iwebprovider.com/launching-of-the-new-2011-iwebprovider-com-template-design/</link>
		<comments>http://iwebprovider.com/launching-of-the-new-2011-iwebprovider-com-template-design/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 12:17:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://iwebprovider.com/?p=356</guid>
		<description><![CDATA[For almost 2 years iWebProvider.com had used a very simple design. But because of investment in time and money we have managed to upgrade our website template design. Now you could see that it has a very fresh and what they called baby look. That is because we want to express that our services is [...]]]></description>
				<content:encoded><![CDATA[<p>For almost 2 years iWebProvider.com had used a very simple design. But because of investment in time and money we have managed to upgrade our website template design. Now you could see that it has a very fresh and what they called baby look. That is because we want to express that our services is always fresh and friendly that could easily attract potential clients.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebprovider.com/launching-of-the-new-2011-iwebprovider-com-template-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web 2.0 platform and Programming Language</title>
		<link>http://iwebprovider.com/web-2-0-platform-and-programming-language/</link>
		<comments>http://iwebprovider.com/web-2-0-platform-and-programming-language/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 09:44:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Header Text]]></category>

		<guid isPermaLink="false">http://iwebprovider.com/?p=186</guid>
		<description><![CDATA[We are promoting Web 2.0 platform in our template design, xHTML in our scripting and PHP programming language in our server side programming. So try our services and be satisfied with the outcome.]]></description>
				<content:encoded><![CDATA[<p>We are promoting Web 2.0 platform in our template design, xHTML in our scripting and  PHP programming language in our server side programming. So try our  services and be satisfied with the outcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebprovider.com/web-2-0-platform-and-programming-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML/xHTML Standard</title>
		<link>http://iwebprovider.com/xhtml-standard/</link>
		<comments>http://iwebprovider.com/xhtml-standard/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 09:42:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Header Text]]></category>

		<guid isPermaLink="false">http://iwebprovider.com/?p=184</guid>
		<description><![CDATA[This site passed and uses the W3C XHTML 1.0 Transitional standard, CSS level 2.1 driven, Javascript and with a latest trend of Table-less xHTML scripting by not using &#60;table&#62; tag in making our script.]]></description>
				<content:encoded><![CDATA[<p>This site passed and uses the W3C XHTML 1.0 Transitional standard,     CSS level 2.1 driven, Javascript and with a latest trend of Table-less xHTML scripting by not using &lt;table&gt; tag in making our script.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebprovider.com/xhtml-standard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website History</title>
		<link>http://iwebprovider.com/website-history/</link>
		<comments>http://iwebprovider.com/website-history/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 09:31:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Header Text]]></category>

		<guid isPermaLink="false">http://iwebprovider.com/?p=178</guid>
		<description><![CDATA[This website was founded last October 18, 2007, fully bought the domain February 2008 and has been continually updating. We are located at heart of The City of Golden Friendship Cagayan de Oro the City.]]></description>
				<content:encoded><![CDATA[<p>This website was founded last October 18, 2007, fully bought the domain February 2008 and has been continually updating. We are located at heart of The City of Golden Friendship Cagayan de Oro the City.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebprovider.com/website-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s not about how many you have learned but how much you have utilized and mastered what you have learned.</title>
		<link>http://iwebprovider.com/its-not-about-how-many-you-have-learned-but-how-much-you-have-utilized-and-mastered-what-you-have-learned/</link>
		<comments>http://iwebprovider.com/its-not-about-how-many-you-have-learned-but-how-much-you-have-utilized-and-mastered-what-you-have-learned/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 10:19:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wise Words]]></category>

		<guid isPermaLink="false">http://iwebprovider.com/?p=98</guid>
		<description><![CDATA[Mark]]></description>
				<content:encoded><![CDATA[<p>Mark</p>
]]></content:encoded>
			<wfw:commentRss>http://iwebprovider.com/its-not-about-how-many-you-have-learned-but-how-much-you-have-utilized-and-mastered-what-you-have-learned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
