<?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>ikawka.com &#187; achilez</title>
	<atom:link href="http://www.ikawka.com/author/achilez/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ikawka.com</link>
	<description>Life would have been easier; if I had the source code.</description>
	<lastBuildDate>Mon, 10 Jan 2011 01:29:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MySQL will soon be acquired by Oracle??</title>
		<link>http://www.ikawka.com/2010/01/mysql-will-soon-be-acquired-by-oracle/</link>
		<comments>http://www.ikawka.com/2010/01/mysql-will-soon-be-acquired-by-oracle/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 02:26:04 +0000</pubDate>
		<dc:creator>achilez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ikawka.com/?p=411</guid>
		<description><![CDATA[read a news today from Google News that mysql (open source database) will soon be acquired by oracle (sun microsystem), this means that mysql will no longer FREE. As you will see mysql has been dominating the online database nowadays compared with other database like postgre, oracle, mssql etc. Asside from that there are lots of open source CMS that supports MySQL (i.e. Wordpress, Joomla, Drupal, OsCommerce, Mambo etc).]]></description>
		<wfw:commentRss>http://www.ikawka.com/2010/01/mysql-will-soon-be-acquired-by-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bisaya Ads &#8211; Post free ads</title>
		<link>http://www.ikawka.com/2009/01/bisaya-ads-post-free-ads/</link>
		<comments>http://www.ikawka.com/2009/01/bisaya-ads-post-free-ads/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 03:39:16 +0000</pubDate>
		<dc:creator>achilez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ikawka.com/?p=269</guid>
		<description><![CDATA[Bisaya Ads - Post FREE Ads about cars, dating, jobs, dating, house, rent, gadgets, computers, announcements, business, entertainment and more...]]></description>
		<wfw:commentRss>http://www.ikawka.com/2009/01/bisaya-ads-post-free-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Putting credit card payment on your website using Paypal</title>
		<link>http://www.ikawka.com/2008/12/putting-credit-card-payment-on-your-website-using-paypal/</link>
		<comments>http://www.ikawka.com/2008/12/putting-credit-card-payment-on-your-website-using-paypal/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 07:32:11 +0000</pubDate>
		<dc:creator>achilez</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Paypal]]></category>
		<category><![CDATA[dodirectpayment]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[paypal api]]></category>
		<category><![CDATA[website payment pro]]></category>

		<guid isPermaLink="false">http://www.ikawka.com/?p=194</guid>
		<description><![CDATA[I created a new stuff on how to put a credit card payment on your codeigniter website using Paypal Website payment Pro DoDirectPayment and would like to share this to you, hope it helps.

1. You need to have a paypal account and then apply for a website payment pro, just visit paypal.com (www.paypal.com) for more info.
2. You should have the paypal API Username, Password and Signature, this is important in order for the payment will be credited in your paypal account.
3. On your model, create a new file paypal.php and use my code.
4. On your controller, create a new file checkout.php and use my code.
5. If you have any more questions about putting a credit card on your website feel free to contact me archie@ikawka.com]]></description>
		<wfw:commentRss>http://www.ikawka.com/2008/12/putting-credit-card-payment-on-your-website-using-paypal/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Finding duplicates/triplicates records on MYSQL</title>
		<link>http://www.ikawka.com/2008/12/finding-duplicatestriplicates-records-on-mysql/</link>
		<comments>http://www.ikawka.com/2008/12/finding-duplicatestriplicates-records-on-mysql/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 06:47:07 +0000</pubDate>
		<dc:creator>achilez</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[duplicates]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email address]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[recordset]]></category>
		<category><![CDATA[total count]]></category>
		<category><![CDATA[triplicates]]></category>

		<guid isPermaLink="false">http://www.ikawka.com/?p=189</guid>
		<description><![CDATA[I would like to share to you some tips on displaying duplicate or more than 1 records on MYSQL

Example: you will query to display the email address and total count of email address exist on the recordset

$sql = "SELECT emailaddress, COUNT(emailaddress) AS TotalCount
FROM tbl_users
GROUP BY emailaddress
HAVING ( COUNT(emailaddress) > 1 )";]]></description>
		<wfw:commentRss>http://www.ikawka.com/2008/12/finding-duplicatestriplicates-records-on-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Flash Plugin for Codeigniter</title>
		<link>http://www.ikawka.com/2008/11/codeigniter-open-flash-plugin/</link>
		<comments>http://www.ikawka.com/2008/11/codeigniter-open-flash-plugin/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 15:07:23 +0000</pubDate>
		<dc:creator>achilez</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[Open Flash]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.ikawka.com/?p=150</guid>
		<description><![CDATA[I created a new OPEN FLASH GRAPH CHART plugin for codeigniter, just in case you want to add a graph chart in your codeigniter framework.


1. download the OPEN FLASH GRAPH CHART:
http://teethgrinder.co.uk/open-flash-chart/

Extract the downloaded file and save the graph.php class into your System/Libraries folder and rename it to opgraph.php. Modify and update the code:

Save the swfobject.js file into your javascripts folder and open-flash-chart.swf into your swf folder.

2. Save the code into your System/plugins/graph_pi.php

3. On the controller, create a graph.php

4. Run or Execute the graph/index controller, you should see the graph chart in your browser.

Hope it helps!
]]></description>
		<wfw:commentRss>http://www.ikawka.com/2008/11/codeigniter-open-flash-plugin/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

