<?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>linein designs &#187; programing</title>
	<atom:link href="http://www.linein.org/blog/category/programing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linein.org/blog</link>
	<description></description>
	<lastBuildDate>Tue, 28 Jun 2011 17:27:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>jQuery AJAX Loading &#8211; Display Images or Text Until Script is Finished (Part 2)</title>
		<link>http://www.linein.org/blog/2010/05/12/jquery-ajax-loading-display-images-or-text-until-script-is-finished-part-2/</link>
		<comments>http://www.linein.org/blog/2010/05/12/jquery-ajax-loading-display-images-or-text-until-script-is-finished-part-2/#comments</comments>
		<pubDate>Wed, 12 May 2010 19:10:47 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=733</guid>
		<description><![CDATA[This is a more practical way to display an image or text while an AJAX request is loading. DEMO &#124; DOWNLOAD FILES What we&#8217;re basically doing is forcing a DIV to have a starting image and then replacing it with the text return from the AJAX request. function loadingAjax(div_id) { $("#"+div_id).html(' saving...'); $.ajax({ type: "POST", [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2010/05/12/jquery-ajax-loading-display-images-or-text-until-script-is-finished-part-2/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Find Years and Months Between Two Dates in PHP</title>
		<link>http://www.linein.org/blog/2010/04/01/find-years-and-months-between-two-dates-in-php/</link>
		<comments>http://www.linein.org/blog/2010/04/01/find-years-and-months-between-two-dates-in-php/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 17:57:32 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=716</guid>
		<description><![CDATA[This is an addition to the Find Time Between Two Dates in PHP post. Here is a quick way to find the years and months between two dates using PHP. The dates are not exact since we&#8217;re assuming that each year and month has the same number of seconds. function yearMonthDifference($start_date, $end_date) { // 31556926 [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2010/04/01/find-years-and-months-between-two-dates-in-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Authorize.net CIM Error Responce E00003 &#8220;Enumeration constraint failed&#8221;</title>
		<link>http://www.linein.org/blog/2009/12/08/authorize-net-cim-error-responce-e00003-enumeration-constraint-failed/</link>
		<comments>http://www.linein.org/blog/2009/12/08/authorize-net-cim-error-responce-e00003-enumeration-constraint-failed/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 17:39:16 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[programing]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[how-to]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=675</guid>
		<description><![CDATA[I could not figure out why I kept on getting the following error being returned : < ?xml version="1.0" encoding="utf-8"? > Error E00003 The 'AnetApi/xml/v1/schema/AnetApiSchema.xsd:validationMode' element is invalid - The value '' is invalid according to its datatype 'AnetApi/xml/v1/schema/AnetApiSchema.xsd:validationModeEnum' - The Enumeration constraint failed. This error is caused by the field validationMode being empty. Spent [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2009/12/08/authorize-net-cim-error-responce-e00003-enumeration-constraint-failed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Run Javascript Code After an AJAX Request</title>
		<link>http://www.linein.org/blog/2009/06/05/run-javascript-code-after-an-ajax-request/</link>
		<comments>http://www.linein.org/blog/2009/06/05/run-javascript-code-after-an-ajax-request/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 14:11:24 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=566</guid>
		<description><![CDATA[Earlier this week I had an interesting problem. I needed to have some javascript code run from within the page being called via AJAX. The javascript relied on the values being set in the page being called so it could not be setup on the page before hand. It had to be called afterward. It [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2009/06/05/run-javascript-code-after-an-ajax-request/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Javascript Close Popup and Refresh or Redirect Parent Window with OnLoad (Solution)</title>
		<link>http://www.linein.org/blog/2009/03/02/javascript-close-popup-and-refresh-or-redirect-parent-window-with-onload-solution/</link>
		<comments>http://www.linein.org/blog/2009/03/02/javascript-close-popup-and-refresh-or-redirect-parent-window-with-onload-solution/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 02:48:46 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[programing]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=494</guid>
		<description><![CDATA[This one about drove me crazy all night trying to think of why this does not work and to be honest I still don&#8217;t understand why it doesn&#8217;t. But below is a solution to the problem. The problem was I was trying to close a popup and force the parent page to load a URL [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2009/03/02/javascript-close-popup-and-refresh-or-redirect-parent-window-with-onload-solution/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP Font Preview Function (text to image)</title>
		<link>http://www.linein.org/blog/2009/02/26/php-font-preview-function-text-to-image/</link>
		<comments>http://www.linein.org/blog/2009/02/26/php-font-preview-function-text-to-image/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 17:04:31 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=489</guid>
		<description><![CDATA[For work we needed a way to allow the customer to preview what their Bible imprint text would look like before they placed their order. I&#8217;m sure there are ways to do this with JavaScript, but we chose to do this with PHP to prevent the site from relying on Javascript (there was already enough [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2009/02/26/php-font-preview-function-text-to-image/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Copy/Transfer Files Between Two Servers Using Linux scp</title>
		<link>http://www.linein.org/blog/2009/01/27/copy-files-between-two-webservers-using-linux-scp/</link>
		<comments>http://www.linein.org/blog/2009/01/27/copy-files-between-two-webservers-using-linux-scp/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 00:12:17 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[programing]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=454</guid>
		<description><![CDATA[The other day we ran into a good problem that our site has grown and we are in need of a new server. So we ordered the server and now we need to transfer all the files from the old server to the new one. But rather than downloading all the files to our local [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2009/01/27/copy-files-between-two-webservers-using-linux-scp/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>jQuery Loading &#8211; Display Images or Text Until Script is Finished</title>
		<link>http://www.linein.org/blog/2008/11/13/jquery-display-images-text-until-script-is-finished/</link>
		<comments>http://www.linein.org/blog/2008/11/13/jquery-display-images-text-until-script-is-finished/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 20:25:50 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=339</guid>
		<description><![CDATA[I&#8217;m just finishing up a little project to improve the search ability on a website and I want to display an image and message say &#8220;loading&#8230;&#8221; until the script finished running. Below is an easy way to do that. UPDATE: Please view the updated way to do this that is a little more practical in [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2008/11/13/jquery-display-images-text-until-script-is-finished/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Quick PHP Function to Get File Sizes in KB, MB &amp; GB</title>
		<link>http://www.linein.org/blog/2008/06/03/quick-php-function-to-get-file-sizes-in-kb-mb-gb/</link>
		<comments>http://www.linein.org/blog/2008/06/03/quick-php-function-to-get-file-sizes-in-kb-mb-gb/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 16:26:44 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=195</guid>
		<description><![CDATA[Here&#8217;s the follow-up article on how to easily get file sizes nicely formated. Below is a quick function that will display the file size in KB, MB, or GB all easily accessed through a function. function formatbytes($file, $type) { switch($type){ case "KB": $filesize = filesize($file) * .0009765625; // bytes to KB break; case "MB": $filesize [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2008/06/03/quick-php-function-to-get-file-sizes-in-kb-mb-gb/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Find Time Between Two Dates in PHP</title>
		<link>http://www.linein.org/blog/2008/04/04/find-time-between-two-dates-in-php/</link>
		<comments>http://www.linein.org/blog/2008/04/04/find-time-between-two-dates-in-php/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 15:04:36 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=184</guid>
		<description><![CDATA[Below is a quick PHP function that allows you to find the time between two dates. The dates must be in seconds from Unix Epoch. if(!function_exists(timeBetween)) { function timeBetween($start_date,$end_date) { $diff = $end_date-$start_date; $seconds = 0; $hours = 0; $minutes = 0; if($diff % 86400 0) { $rest = ($diff % 86400); $days = ($diff [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2008/04/04/find-time-between-two-dates-in-php/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic
Database Caching 1/20 queries in 0.017 seconds using disk: basic

Served from: www.linein.org @ 2012-02-09 07:49:23 -->
