<?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>Ivan's Technical Blog &#187; Uncategorized</title>
	<atom:link href="http://ivan-grace.com/techblog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://ivan-grace.com/techblog</link>
	<description></description>
	<lastBuildDate>Mon, 06 Apr 2009 03:54:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>How to update multiple records at once</title>
		<link>http://ivan-grace.com/techblog/2009/01/how-to-update-multiple-records-at-once/</link>
		<comments>http://ivan-grace.com/techblog/2009/01/how-to-update-multiple-records-at-once/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 17:34:21 +0000</pubDate>
		<dc:creator>Ivan Guan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ivan-grace.com/techblog/?p=79</guid>
		<description><![CDATA[set all of the check boxes to: &#60;input type=&#8221;checkbox&#8221; name=&#8221;checkbox[]&#8221; value=&#8221;&#60;?php echo $id ?&#62;&#8221; /&#62; That $id will be used to refer to the records to be updated. To process the form data you use $_POST['checkbox'][$i], for example: for ($i = 0; $i &#60; count($_POST['checkbox']); ++$i) { echo &#8220;item id: &#8221; . $_POST['checkbox'][$i]; }]]></description>
			<content:encoded><![CDATA[<p>set all of the check boxes to:</p>
<p><strong>&lt;input type=&#8221;checkbox&#8221; name=&#8221;checkbox[]&#8221; value=&#8221;&lt;?php echo $id ?&gt;&#8221; /&gt;</strong></p>
<p>That $id will be used to refer to the records to be updated.</p>
<p>To process the form data you use <code style="color: #dd5500;">$_POST['checkbox'][$i]</code>, for example:</p>
<p><strong>for ($i = 0; $i &lt; count($_POST['checkbox']); ++$i) {<br />
echo &#8220;item id: &#8221; . $_POST['checkbox'][$i];<br />
} </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://ivan-grace.com/techblog/2009/01/how-to-update-multiple-records-at-once/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Foreign Key in phpMyAdmin</title>
		<link>http://ivan-grace.com/techblog/2009/01/add-foreign-key-in-phpmyadmin/</link>
		<comments>http://ivan-grace.com/techblog/2009/01/add-foreign-key-in-phpmyadmin/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 04:17:36 +0000</pubDate>
		<dc:creator>Ivan Guan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ivan-grace.com/techblog/2009/01/add-foreign-key-in-phpmyadmin/</guid>
		<description><![CDATA[The following steps are required for you to be able to add foreign keys using phpadmin (in xampp). 1. Select any table and go to operations tab, if InnoDB is listed under storage engine drop down menu then jump to step 5. 2. So InnoDB is disabled in mysql engine, edit the \xampp\mysql\bi\my.cnf file and [...]]]></description>
			<content:encoded><![CDATA[<p>The following steps are required for you to be able to add foreign keys using phpadmin (in xampp).</p>
<p>   1. Select any table and go to operations tab, if InnoDB is listed under storage engine drop down menu then jump to step 5.<br />
   2. So InnoDB is disabled in mysql engine, edit the \xampp\mysql\bi\my.cnf file and remove the hashes that are required to enable InnoDB (its self explanatory).<br />
   3. Add a line in the above file, default_storage_engine=InnoDB (This makes InnoDB the default storage engine).<br />
   4. Restart mysql from the xampp control panel or from MS services.<br />
   5. Make sure, both PARENT and CHILD tables are of storage type InnoDB.<br />
   6. REFERENCED key (in parent) should be primary and REFERENCING key (in child) should be index.<br />
   7. In the CHILD table’s structure view, click on the link ‘relations view’ (it lies above ‘add fields’).<br />
   8. In the row corresponding to the REFERENCING key, select the REFERENCED key from the second column drop box.<br />
   9. Click go .. you’ll see that the required query is executed.</p>
]]></content:encoded>
			<wfw:commentRss>http://ivan-grace.com/techblog/2009/01/add-foreign-key-in-phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free CRM Online Services and Free Open Source Software Solutions for CRM</title>
		<link>http://ivan-grace.com/techblog/2008/10/free-crm-online-services-and-free-open-source-software-solutions-for-crm/</link>
		<comments>http://ivan-grace.com/techblog/2008/10/free-crm-online-services-and-free-open-source-software-solutions-for-crm/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 13:12:11 +0000</pubDate>
		<dc:creator>Ivan Guan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[crm]]></category>

		<guid isPermaLink="false">http://ivan-grace.com/techblog/?p=43</guid>
		<description><![CDATA[Using a free CRM (Customer Relationship Management) online system, or one that is free open source software, is an excellent way to manage your sales leads. Free CRM software systems allow you the most inexpensive way to automate your lead list, sales pipeline, after the sale follow up, and sometimes even your inventory. There are [...]]]></description>
			<content:encoded><![CDATA[<p>Using a free CRM (Customer Relationship Management) online system, or one that is free open source software, is an excellent way to manage your sales leads. Free CRM software systems allow you the most inexpensive way to automate your lead list, sales pipeline, after the sale follow up, and sometimes even your inventory.</p>
<p>There are many CRM (Customer Relationship Management) software systems to choose from but, if you are just starting out in Sales, or if you own a small business, then before you invest in CRM software, it is a great idea to first consider trying some of the free CRM online (or web based) solutions. Some are available as free open source software for you to download to your computer. Once you try one or two of them, you will then have a better idea and know first hand what you want or don&#8217;t want &#8220;feature-wise&#8221; should you decide to purchase a CRM system down the road. Here is a list of websites to visit that offer free CRM software.</p>
<h3>List of Free CRM Online Services and Free Open Source Software</h3>
<ul>
<li><strong><a onclick="zT(this, '1/XJ')" href="http://www.freecrm.com/" target="_new482">FreeCRM.com &#8211; </a></strong> This is a very popular free CRM system and will no doubt cover all of your needs for sales lead management. This system is an online or web-based service so you do not need to download any software. It also makes it easy to access from any computer when you are away from your office. It&#8217;s easy to use with a long list of features. Register for free.</li>
<li><strong><a onclick="zT(this, '1/XJ')" href="http://www.salesforce.com/products/editions-pricing/personal-edition/" target="_new521">SalesForce.com -</a></strong> Salesforce CRM is another free CRM online service; there is no need to download anything to your computer. The Personal Edition is free for a single user only. Register an account for free.</li>
<li><strong><a onclick="zT(this, '1/XJ')" href="http://crm.zoho.com/crm/login.sas" target="_new461">Zoho.com &#8211; </a> </strong> Zoho offers a free online CRM solution for up to three users. This system also has features that can accommodate the small business owner with an ingetrated inventory management system. Register for free.</li>
<li><strong><a onclick="zT(this, '1/XJ')" href="http://www.vtiger.com/" target="_new444">Vtiger.com -</a> </strong> Vtiger is free open source software for CRM. It is available for both Windows and Linux systems. It offers many features that were developed mainly for the small to medium sized business. Free for anyone to download and use.</li>
<li><strong><a onclick="zT(this, '1/XJ')" href="http://www.saaslight.com/">SassLight.com &#8211; </a></strong> SassLight is a free web based (or online) CRM solution. Very easy to use with video tutorials available on the website. Free to register and use for one person only.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ivan-grace.com/techblog/2008/10/free-crm-online-services-and-free-open-source-software-solutions-for-crm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

