<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Joshua McGinnis</title>
	<atom:link href="http://joshuamcginnis.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://joshuamcginnis.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Tue, 24 Apr 2012 05:24:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on How to: Disable Same-Origin Policy in Chrome by yi2ng2</title>
		<link>http://joshuamcginnis.com/2011/02/28/how-to-disable-same-origin-policy-in-chrome/#comment-13469</link>
		<dc:creator>yi2ng2</dc:creator>
		<pubDate>Tue, 24 Apr 2012 05:24:01 +0000</pubDate>
		<guid isPermaLink="false">http://joshuamcginnis.com/?p=2930#comment-13469</guid>
		<description>Hey dude, just drop by to say thank you for the trick. A good one ;)</description>
		<content:encoded><![CDATA[<p>Hey dude, just drop by to say thank you for the trick. A good one <img src='http://joshuamcginnis.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Mike Davis</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-13455</link>
		<dc:creator>Mike Davis</dc:creator>
		<pubDate>Mon, 23 Apr 2012 19:16:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-13455</guid>
		<description>Joshua,

Thank you - this page is still paying dividends.

There is a bug(?) in the QuickBase API that your do_query code above uncovers.  It turns out using EX vs. ex in a query yields different results.  What we demonstrated repeatedly is that EX is an exact match whereas ex acts like CT.

We demonstrated this by making direct calls via url to API_DoQuery so neither your sample nor quickbase.php code is at issue. 
Hope it helps anyone else encountering this problem.,

-Mike</description>
		<content:encoded><![CDATA[<p>Joshua,</p>
<p>Thank you &#8211; this page is still paying dividends.</p>
<p>There is a bug(?) in the QuickBase API that your do_query code above uncovers.  It turns out using EX vs. ex in a query yields different results.  What we demonstrated repeatedly is that EX is an exact match whereas ex acts like CT.</p>
<p>We demonstrated this by making direct calls via url to API_DoQuery so neither your sample nor quickbase.php code is at issue.<br />
Hope it helps anyone else encountering this problem.,</p>
<p>-Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Joshua McGinnis</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-13360</link>
		<dc:creator>Joshua McGinnis</dc:creator>
		<pubDate>Fri, 20 Apr 2012 17:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-13360</guid>
		<description>Hi Alex - I&#039;m about to leave for vacation, but email me and I will help you when I return: joshua@mcginn.is</description>
		<content:encoded><![CDATA[<p>Hi Alex &#8211; I&#8217;m about to leave for vacation, but email me and I will help you when I return: <a href="mailto:joshua@mcginn.is">joshua@mcginn.is</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Alex Pagan-Ortiz</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-13359</link>
		<dc:creator>Alex Pagan-Ortiz</dc:creator>
		<pubDate>Fri, 20 Apr 2012 17:33:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-13359</guid>
		<description>$query = array(
			array(
				&quot;fid&quot;	=&gt; $fieldfid,
				&quot;ev&quot;	=&gt; &quot;EX&quot;,
				&quot;cri&quot;	=&gt; value
				),
			array(
				&quot;ao&quot;	=&gt; &#039;AND&#039;,
				&quot;fid&quot;	=&gt; $field2_fid,
				&quot;ev&quot;	=&gt; &quot;EX&quot;,
				&quot;cri&quot;	=&gt; value
				),
			array(
				&quot;ao&quot;	=&gt;&#039;AND&#039;,
				&quot;fid&quot;	=&gt; $field3_fid,
				&quot;ev&quot;	=&gt; &quot;EX&quot;,
				&quot;cri&quot;	=&gt; value	
			)
			);
		$results = $qbconnect-&gt;do_query($query,&#039;&#039;,&#039;&#039;,2.3.5.7.9);</description>
		<content:encoded><![CDATA[<p>$query = array(<br />
			array(<br />
				&#8220;fid&#8221;	=&gt; $fieldfid,<br />
				&#8220;ev&#8221;	=&gt; &#8220;EX&#8221;,<br />
				&#8220;cri&#8221;	=&gt; value<br />
				),<br />
			array(<br />
				&#8220;ao&#8221;	=&gt; &#8216;AND&#8217;,<br />
				&#8220;fid&#8221;	=&gt; $field2_fid,<br />
				&#8220;ev&#8221;	=&gt; &#8220;EX&#8221;,<br />
				&#8220;cri&#8221;	=&gt; value<br />
				),<br />
			array(<br />
				&#8220;ao&#8221;	=&gt;&#8217;AND&#8217;,<br />
				&#8220;fid&#8221;	=&gt; $field3_fid,<br />
				&#8220;ev&#8221;	=&gt; &#8220;EX&#8221;,<br />
				&#8220;cri&#8221;	=&gt; value<br />
			)<br />
			);<br />
		$results = $qbconnect-&gt;do_query($query,&#8221;,&#8221;,2.3.5.7.9);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Alex Pagan-Ortiz</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-13358</link>
		<dc:creator>Alex Pagan-Ortiz</dc:creator>
		<pubDate>Fri, 20 Apr 2012 17:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-13358</guid>
		<description>Hi Johsua,
I wrote a php script where I run queries that retrieve a single record from quickbase. Like,
$qbconnect = new QuickBase(username,password,true,$QB_Table);
	$queries = array(
		array(
			&quot;fid&quot;	=&gt; $QB_Table_field_fid,
			&quot;ev&quot;	=&gt; &quot;EX&quot;,
			&quot;cri&quot;	=&gt; $value )
			);
	$results = $qbconnect-&gt;do_query($queries,&#039;&#039;,&#039;&#039;,$QBfieldvalue1.&#039;.&#039;. $QBFieldValue2.&#039;.&#039;.$QBFieldValue3.&#039;.&#039;.$QBFieldValue4.&#039;.&#039;.$QBFieldValue5);
	if( $results ){
		$record = $results-&gt;table-&gt;records-&gt;record-&gt;f;
		If( count($record) &gt; 0){
			$field1 	= $record[ 0 ];
			$field2	= $record[ 1 ];
			$field3	= $record[ 2 ];
			$field4	= $record[ 3 ];
			$field5	= $record[ 4 ];
			$return = array( $field1, $field2, $field3, $field4, $field5 );
		}
	}

But now I need to modify the query to retrieve multiple records, the instructions to parse a single record to access every single field value is like,
	$record = $results-&gt;table-&gt;records-&gt;record-&gt;f;
Then I access every element of the array with an index.
Do you know or have an example that allows me to retrieve and access every field value from multiple records retrieved from quickbase?
Thank you,
Alex</description>
		<content:encoded><![CDATA[<p>Hi Johsua,<br />
I wrote a php script where I run queries that retrieve a single record from quickbase. Like,<br />
$qbconnect = new QuickBase(username,password,true,$QB_Table);<br />
	$queries = array(<br />
		array(<br />
			&#8220;fid&#8221;	=&gt; $QB_Table_field_fid,<br />
			&#8220;ev&#8221;	=&gt; &#8220;EX&#8221;,<br />
			&#8220;cri&#8221;	=&gt; $value )<br />
			);<br />
	$results = $qbconnect-&gt;do_query($queries,&#8221;,&#8221;,$QBfieldvalue1.&#8217;.&#8217;. $QBFieldValue2.&#8217;.&#8217;.$QBFieldValue3.&#8217;.&#8217;.$QBFieldValue4.&#8217;.&#8217;.$QBFieldValue5);<br />
	if( $results ){<br />
		$record = $results-&gt;table-&gt;records-&gt;record-&gt;f;<br />
		If( count($record) &gt; 0){<br />
			$field1 	= $record[ 0 ];<br />
			$field2	= $record[ 1 ];<br />
			$field3	= $record[ 2 ];<br />
			$field4	= $record[ 3 ];<br />
			$field5	= $record[ 4 ];<br />
			$return = array( $field1, $field2, $field3, $field4, $field5 );<br />
		}<br />
	}</p>
<p>But now I need to modify the query to retrieve multiple records, the instructions to parse a single record to access every single field value is like,<br />
	$record = $results-&gt;table-&gt;records-&gt;record-&gt;f;<br />
Then I access every element of the array with an index.<br />
Do you know or have an example that allows me to retrieve and access every field value from multiple records retrieved from quickbase?<br />
Thank you,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: Disable Same-Origin Policy in Chrome by Firestryke31</title>
		<link>http://joshuamcginnis.com/2011/02/28/how-to-disable-same-origin-policy-in-chrome/#comment-13301</link>
		<dc:creator>Firestryke31</dc:creator>
		<pubDate>Wed, 18 Apr 2012 12:42:57 +0000</pubDate>
		<guid isPermaLink="false">http://joshuamcginnis.com/?p=2930#comment-13301</guid>
		<description>For a Windows copy-pasta-able shortcut, no modification needed:
%userprofile%\AppData\Local\Google\Chrome\Application\chrome.exe --allow-file-access-from-files --disable-web-security

If Mac and linux are similar (note I have no idea where chrome installs itself to on Mac/linux and am assuming it&#039;s just their equivalent, so don&#039;t be surprised if this doesn&#039;t work):
~/Google/Chrome/Application/chrome --allow-file-access-from-files --disable-web-security


Also, for your blog comments, I just found that the fancy &quot;clicking in the box clears the default text&quot; is really &quot;clicking in the box clears everything any time you click in it&quot; so I have to use the arrow keys to move back, Shift-arrowkey to highlight, make changes, then arrow key back to the end to continue. It&#039;s kind of annoying. Solution: [pseudocode] if(box.content == &quot;Comment&quot;) clear(); else doNothing();[/pseudocode]</description>
		<content:encoded><![CDATA[<p>For a Windows copy-pasta-able shortcut, no modification needed:<br />
%userprofile%\AppData\Local\Google\Chrome\Application\chrome.exe &#8211;allow-file-access-from-files &#8211;disable-web-security</p>
<p>If Mac and linux are similar (note I have no idea where chrome installs itself to on Mac/linux and am assuming it&#8217;s just their equivalent, so don&#8217;t be surprised if this doesn&#8217;t work):<br />
~/Google/Chrome/Application/chrome &#8211;allow-file-access-from-files &#8211;disable-web-security</p>
<p>Also, for your blog comments, I just found that the fancy &#8220;clicking in the box clears the default text&#8221; is really &#8220;clicking in the box clears everything any time you click in it&#8221; so I have to use the arrow keys to move back, Shift-arrowkey to highlight, make changes, then arrow key back to the end to continue. It&#8217;s kind of annoying. Solution: [pseudocode] if(box.content == &#8220;Comment&#8221;) clear(); else doNothing();[/pseudocode]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WebEX API PHP SDK by Joshua McGinnis</title>
		<link>http://joshuamcginnis.com/2010/07/12/webex-api-php-sdk/#comment-13047</link>
		<dc:creator>Joshua McGinnis</dc:creator>
		<pubDate>Tue, 10 Apr 2012 12:39:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshuamcginnis.com/?p=2455#comment-13047</guid>
		<description>I do QB consulting if you&#039;re interested. You can reach me by filling out the contact form on this website or email: joshua@mcginn.is</description>
		<content:encoded><![CDATA[<p>I do QB consulting if you&#8217;re interested. You can reach me by filling out the contact form on this website or email: <a href="mailto:joshua@mcginn.is">joshua@mcginn.is</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WebEX API PHP SDK by zhangyi</title>
		<link>http://joshuamcginnis.com/2010/07/12/webex-api-php-sdk/#comment-13044</link>
		<dc:creator>zhangyi</dc:creator>
		<pubDate>Tue, 10 Apr 2012 09:32:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshuamcginnis.com/?p=2455#comment-13044</guid>
		<description>hi,we need a solution on a WEB ClassRoom,would&#039;d U like to send me?thanks a lot!</description>
		<content:encoded><![CDATA[<p>hi,we need a solution on a WEB ClassRoom,would&#8217;d U like to send me?thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Zied Ellouze</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-12119</link>
		<dc:creator>Zied Ellouze</dc:creator>
		<pubDate>Fri, 09 Mar 2012 16:14:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-12119</guid>
		<description>Hello
I use the php api for QuickBase
and I look how I can make a request for selection according to multiple criteria
as this example
where field1=&quot;x&quot; and (field2=&quot;y&quot; or field3=&quot;z&quot;)
thank you</description>
		<content:encoded><![CDATA[<p>Hello<br />
I use the php api for QuickBase<br />
and I look how I can make a request for selection according to multiple criteria<br />
as this example<br />
where field1=&#8221;x&#8221; and (field2=&#8221;y&#8221; or field3=&#8221;z&#8221;)<br />
thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: Disable Same-Origin Policy in Chrome by Erwin Vedar</title>
		<link>http://joshuamcginnis.com/2011/02/28/how-to-disable-same-origin-policy-in-chrome/#comment-12057</link>
		<dc:creator>Erwin Vedar</dc:creator>
		<pubDate>Wed, 07 Mar 2012 00:55:17 +0000</pubDate>
		<guid isPermaLink="false">http://joshuamcginnis.com/?p=2930#comment-12057</guid>
		<description>Wow!  I didn&#039;t even know this was possible.  Might just have saved my piece of the project I&#039;m working on.

AND I was pleasantly surprised to find out you&#039;re a fellow Intuiteer.  :)</description>
		<content:encoded><![CDATA[<p>Wow!  I didn&#8217;t even know this was possible.  Might just have saved my piece of the project I&#8217;m working on.</p>
<p>AND I was pleasantly surprised to find out you&#8217;re a fellow Intuiteer.  <img src='http://joshuamcginnis.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to fix the @font-face flicker issue in FireFox by Ladereihenfolge von Webfonts - XHTMLforum</title>
		<link>http://joshuamcginnis.com/2010/08/17/how-to-fix-the-font-face-flicker-issue-in-firefox/#comment-11826</link>
		<dc:creator>Ladereihenfolge von Webfonts - XHTMLforum</dc:creator>
		<pubDate>Sat, 25 Feb 2012 19:54:51 +0000</pubDate>
		<guid isPermaLink="false">http://joshuamcginnis.com/?p=2832#comment-11826</guid>
		<description>[...]  falls es noch jemand interessiert, im Firefox hilft dieses Script ganz gut:  How to fix the @font-face flicker issue in FireFox &#124; Joshua McGinnis  Zumindest sehe ich das Flackern nicht mehr, sondern die Schrift wird erst gezeigt wenn die Seite [...]</description>
		<content:encoded><![CDATA[<p>[...]  falls es noch jemand interessiert, im Firefox hilft dieses Script ganz gut:  How to fix the @font-face flicker issue in FireFox | Joshua McGinnis  Zumindest sehe ich das Flackern nicht mehr, sondern die Schrift wird erst gezeigt wenn die Seite [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: Disable Same-Origin Policy in Chrome by Joshua McGinnis</title>
		<link>http://joshuamcginnis.com/2011/02/28/how-to-disable-same-origin-policy-in-chrome/#comment-9920</link>
		<dc:creator>Joshua McGinnis</dc:creator>
		<pubDate>Mon, 26 Dec 2011 14:08:29 +0000</pubDate>
		<guid isPermaLink="false">http://joshuamcginnis.com/?p=2930#comment-9920</guid>
		<description>It should work across all instances.</description>
		<content:encoded><![CDATA[<p>It should work across all instances.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: Disable Same-Origin Policy in Chrome by adam16ster</title>
		<link>http://joshuamcginnis.com/2011/02/28/how-to-disable-same-origin-policy-in-chrome/#comment-9831</link>
		<dc:creator>adam16ster</dc:creator>
		<pubDate>Sat, 24 Dec 2011 00:48:46 +0000</pubDate>
		<guid isPermaLink="false">http://joshuamcginnis.com/?p=2930#comment-9831</guid>
		<description>is this supposed to work for all operating systems running chrome or just mac/linux?</description>
		<content:encoded><![CDATA[<p>is this supposed to work for all operating systems running chrome or just mac/linux?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Joshua McGinnis</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-8623</link>
		<dc:creator>Joshua McGinnis</dc:creator>
		<pubDate>Thu, 10 Nov 2011 13:42:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-8623</guid>
		<description>Hi Alex,

I would run a phpinfo() from within the same environment and make sure curl is enabled. 

The curl-init method is located at the top of the QuickBase SDK class.

- Joshua</description>
		<content:encoded><![CDATA[<p>Hi Alex,</p>
<p>I would run a phpinfo() from within the same environment and make sure curl is enabled. </p>
<p>The curl-init method is located at the top of the QuickBase SDK class.</p>
<p>- Joshua</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Alex Pagan-Ortiz</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-8622</link>
		<dc:creator>Alex Pagan-Ortiz</dc:creator>
		<pubDate>Thu, 10 Nov 2011 13:40:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-8622</guid>
		<description>Hi Joshua,

I am evaluating a PHP editor called NuSphere 6.1 and I am running some php scripts with this product and I am getting the following error from the QuickBase api class.

Fatal error: Call to undefined function curl_init() in Z:\APO\qb-arh-php-works\QuickBaseClient.php on line 127

However,  when I run the same scripts from the browser it runs fine without showing the error.

Do you know where is the curl-init method located?  Any advise,

thank you,

Alex</description>
		<content:encoded><![CDATA[<p>Hi Joshua,</p>
<p>I am evaluating a PHP editor called NuSphere 6.1 and I am running some php scripts with this product and I am getting the following error from the QuickBase api class.</p>
<p>Fatal error: Call to undefined function curl_init() in Z:\APO\qb-arh-php-works\QuickBaseClient.php on line 127</p>
<p>However,  when I run the same scripts from the browser it runs fine without showing the error.</p>
<p>Do you know where is the curl-init method located?  Any advise,</p>
<p>thank you,</p>
<p>Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP API Wrapper (SDK) for QuickBase by Joshua McGinnis</title>
		<link>http://joshuamcginnis.com/2008/09/07/php-wrapper-for-quickbase/#comment-8569</link>
		<dc:creator>Joshua McGinnis</dc:creator>
		<pubDate>Fri, 04 Nov 2011 18:37:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/post/47470845#comment-8569</guid>
		<description>If you have questions, you&#039;re always welcome to email me directly at joshua@mcginn.is.</description>
		<content:encoded><![CDATA[<p>If you have questions, you&#8217;re always welcome to email me directly at <a href="mailto:joshua@mcginn.is">joshua@mcginn.is</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP API Wrapper (SDK) for QuickBase by Karl</title>
		<link>http://joshuamcginnis.com/2008/09/07/php-wrapper-for-quickbase/#comment-8567</link>
		<dc:creator>Karl</dc:creator>
		<pubDate>Fri, 04 Nov 2011 17:50:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/post/47470845#comment-8567</guid>
		<description>Hi Josh-

Just downloaded your sdk, have yet to try (thanks for your work!). I don&#039;t see any discussion at code.intuit.com, what is the best way to stay in touch and contribute? I&#039;m have a big project on my plate to integrate a large db with a site using flash/flex/actionscript and feel the php sdk would probable help bridging.</description>
		<content:encoded><![CDATA[<p>Hi Josh-</p>
<p>Just downloaded your sdk, have yet to try (thanks for your work!). I don&#8217;t see any discussion at code.intuit.com, what is the best way to stay in touch and contribute? I&#8217;m have a big project on my plate to integrate a large db with a site using flash/flex/actionscript and feel the php sdk would probable help bridging.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Joshua McGinnis</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-8556</link>
		<dc:creator>Joshua McGinnis</dc:creator>
		<pubDate>Thu, 03 Nov 2011 14:29:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-8556</guid>
		<description>Hi Alex - you can&#039;t just echo $results since the result will be a SimpleXML Object. Try var_dump($results); instead and see if it contains any data.</description>
		<content:encoded><![CDATA[<p>Hi Alex &#8211; you can&#8217;t just echo $results since the result will be a SimpleXML Object. Try var_dump($results); instead and see if it contains any data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Alex Pagan-Ortiz</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-8554</link>
		<dc:creator>Alex Pagan-Ortiz</dc:creator>
		<pubDate>Thu, 03 Nov 2011 13:16:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-8554</guid>
		<description>Hi Joshua,

For the do_query example, I need to retrieve a field from a record based on a criteria.  

Something like “Select accountNo from Transaction where billingNo = some value

I have he following code but is not showing any output… 

  $line = fgetcsv($fp);
    
    $ArhBillingNumber = $line[1];
    
    $query= array(
        array(&#039;fid&#039; =&gt; &#039;10&#039;,
               &#039;ev&#039; =&gt; &#039;ex&#039;,
		 &#039;cri&#039; =&gt; $ArhBillingNumber));

    $results = quickbase-&gt;do_query($query,&#039;&#039;,&#039;&#039;,&#039;11&#039;);

    
    echo $results.&#039;&#039;;

Please Advise,

Alex</description>
		<content:encoded><![CDATA[<p>Hi Joshua,</p>
<p>For the do_query example, I need to retrieve a field from a record based on a criteria.  </p>
<p>Something like “Select accountNo from Transaction where billingNo = some value</p>
<p>I have he following code but is not showing any output… </p>
<p>  $line = fgetcsv($fp);</p>
<p>    $ArhBillingNumber = $line[1];</p>
<p>    $query= array(<br />
        array(&#8216;fid&#8217; =&gt; &#8217;10&#8242;,<br />
               &#8216;ev&#8217; =&gt; &#8216;ex&#8217;,<br />
		 &#8216;cri&#8217; =&gt; $ArhBillingNumber));</p>
<p>    $results = quickbase-&gt;do_query($query,&#8221;,&#8221;,&#8217;11&#8242;);</p>
<p>    echo $results.&#8221;;</p>
<p>Please Advise,</p>
<p>Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Will</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-8446</link>
		<dc:creator>Will</dc:creator>
		<pubDate>Mon, 24 Oct 2011 14:42:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-8446</guid>
		<description>Hi Mery, I ran into the same issue. I was reading the framework and you can add a fourth element to the second or subsequent queries to add AND/OR... 

$queries = array(
            array(
                &#039;fid&#039;   =&gt; &#039;16&#039;,
                &#039;ev&#039;    =&gt; &#039;ex&#039;,
                &#039;cri&#039;   =&gt; &#039;eve&#039;)
            ),
			 array(
                &#039;fid&#039;   =&gt; &#039;19&#039;,
                &#039;ev&#039;    =&gt; &#039;ex&#039;,
                &#039;cri&#039;   =&gt; &#039;manager&#039;,
				&#039;ao&#039;	=&gt; &#039;AND&#039;
			)
        );</description>
		<content:encoded><![CDATA[<p>Hi Mery, I ran into the same issue. I was reading the framework and you can add a fourth element to the second or subsequent queries to add AND/OR&#8230; </p>
<p>$queries = array(<br />
            array(<br />
                &#8216;fid&#8217;   =&gt; &#8217;16&#8242;,<br />
                &#8216;ev&#8217;    =&gt; &#8216;ex&#8217;,<br />
                &#8216;cri&#8217;   =&gt; &#8216;eve&#8217;)<br />
            ),<br />
			 array(<br />
                &#8216;fid&#8217;   =&gt; &#8217;19&#8242;,<br />
                &#8216;ev&#8217;    =&gt; &#8216;ex&#8217;,<br />
                &#8216;cri&#8217;   =&gt; &#8216;manager&#8217;,<br />
				&#8216;ao&#8217;	=&gt; &#8216;AND&#8217;<br />
			)<br />
        );</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on terremark sucks by Terremark Customer</title>
		<link>http://joshuamcginnis.com/2008/05/02/terremark-sucks/#comment-7988</link>
		<dc:creator>Terremark Customer</dc:creator>
		<pubDate>Mon, 26 Sep 2011 15:37:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/post/33549929#comment-7988</guid>
		<description>Project to build a clients Datacenter in Terremark space.

Terremark terms not spelled out in agreement, refused to integrate a specific vendor&#039;s gear to attached to their cloud services.  The suprise result was we took a hit in restocking fees, and our client had to swallow another $20K charge to purchase gear they found acceptable.   Extensive research and 
documentation provided to them supporting vendor interoperability.  No use, attempting to reason with them on an engineering level was a complete waste of time.  Idiot, non technical Terremark PM treated our team as if we were stupid and expected us to be mindreaders...   

Thier so called engineering staff are completely clueless when it comes to industry standards such as etherchannel and load balanced 802.1d STP and interior routing solutions.  They were puzzled by the request, had to &#039;get back to us&#039; and when they did attempted to fleece our client again by sending us
an astronomical quote.  Needless to say when our contract is up, they will be handed their hat...</description>
		<content:encoded><![CDATA[<p>Project to build a clients Datacenter in Terremark space.</p>
<p>Terremark terms not spelled out in agreement, refused to integrate a specific vendor&#8217;s gear to attached to their cloud services.  The suprise result was we took a hit in restocking fees, and our client had to swallow another $20K charge to purchase gear they found acceptable.   Extensive research and<br />
documentation provided to them supporting vendor interoperability.  No use, attempting to reason with them on an engineering level was a complete waste of time.  Idiot, non technical Terremark PM treated our team as if we were stupid and expected us to be mindreaders&#8230;   </p>
<p>Thier so called engineering staff are completely clueless when it comes to industry standards such as etherchannel and load balanced 802.1d STP and interior routing solutions.  They were puzzled by the request, had to &#8216;get back to us&#8217; and when they did attempted to fleece our client again by sending us<br />
an astronomical quote.  Needless to say when our contract is up, they will be handed their hat&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Zend to Add ReCaptcha to Contact Form by Muhammad</title>
		<link>http://joshuamcginnis.com/2010/08/09/using-zend-to-add-recaptcha-to-contact-form/#comment-7876</link>
		<dc:creator>Muhammad</dc:creator>
		<pubDate>Mon, 19 Sep 2011 14:23:33 +0000</pubDate>
		<guid isPermaLink="false">http://joshuamcginnis.com/?p=2813#comment-7876</guid>
		<description>thanks man this tutorial helps alot....</description>
		<content:encoded><![CDATA[<p>thanks man this tutorial helps alot&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on csv to associative array by Daniel</title>
		<link>http://joshuamcginnis.com/2008/12/04/csv-to-associate-array/#comment-6572</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Wed, 22 Jun 2011 16:51:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1124#comment-6572</guid>
		<description>Thanks! Worked perfectly!</description>
		<content:encoded><![CDATA[<p>Thanks! Worked perfectly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to fix the @font-face flicker issue in FireFox by Rizki</title>
		<link>http://joshuamcginnis.com/2010/08/17/how-to-fix-the-font-face-flicker-issue-in-firefox/#comment-6459</link>
		<dc:creator>Rizki</dc:creator>
		<pubDate>Tue, 14 Jun 2011 12:27:48 +0000</pubDate>
		<guid isPermaLink="false">http://joshuamcginnis.com/?p=2832#comment-6459</guid>
		<description>I use webfont loader by google (http://code.google.com/apis/webfonts/docs/webfont_loader.html), it&#039;s work perfect also and more simple in my opinion</description>
		<content:encoded><![CDATA[<p>I use webfont loader by google (<a href="http://code.google.com/apis/webfonts/docs/webfont_loader.html" rel="nofollow">http://code.google.com/apis/webfonts/docs/webfont_loader.html</a>), it&#8217;s work perfect also and more simple in my opinion</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Sagar</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-6405</link>
		<dc:creator>Sagar</dc:creator>
		<pubDate>Fri, 10 Jun 2011 13:31:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-6405</guid>
		<description>Hi Joshua,

Can u please give us an example to fetch data from multiple tables in quickbase.

Thanks,
-Sagar.</description>
		<content:encoded><![CDATA[<p>Hi Joshua,</p>
<p>Can u please give us an example to fetch data from multiple tables in quickbase.</p>
<p>Thanks,<br />
-Sagar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Zend to Add ReCaptcha to Contact Form by Matrix</title>
		<link>http://joshuamcginnis.com/2010/08/09/using-zend-to-add-recaptcha-to-contact-form/#comment-6404</link>
		<dc:creator>Matrix</dc:creator>
		<pubDate>Fri, 10 Jun 2011 12:52:25 +0000</pubDate>
		<guid isPermaLink="false">http://joshuamcginnis.com/?p=2813#comment-6404</guid>
		<description>Hello, so i have the same thing as you , but in my submit form, i do have the reCaptcha that appears correctly , but just benath it i got a text input field, when i check where it comes from it says id=captcha, so when i add $captcha element , i get the recaptcha and input field. How to avoid this please ?
 (sorry for the bad english).</description>
		<content:encoded><![CDATA[<p>Hello, so i have the same thing as you , but in my submit form, i do have the reCaptcha that appears correctly , but just benath it i got a text input field, when i check where it comes from it says id=captcha, so when i add $captcha element , i get the recaptcha and input field. How to avoid this please ?<br />
 (sorry for the bad english).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Mery</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-6087</link>
		<dc:creator>Mery</dc:creator>
		<pubDate>Thu, 12 May 2011 22:39:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-6087</guid>
		<description>for the do_query example, can you give an example where i use AND for the criteria?

let&#039;s say where user is &#039;eve&#039; AND &#039;role is &#039;manager&#039;</description>
		<content:encoded><![CDATA[<p>for the do_query example, can you give an example where i use AND for the criteria?</p>
<p>let&#8217;s say where user is &#8216;eve&#8217; AND &#8216;role is &#8216;manager&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Enable libcurl in WAMP by Nitin</title>
		<link>http://joshuamcginnis.com/2008/09/16/how-to-enable-libcurl-in-wamp/#comment-6076</link>
		<dc:creator>Nitin</dc:creator>
		<pubDate>Thu, 12 May 2011 11:29:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=890#comment-6076</guid>
		<description>Thanks man. Made my life cool....</description>
		<content:encoded><![CDATA[<p>Thanks man. Made my life cool&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP SDK for QuickBase API by Daniel</title>
		<link>http://joshuamcginnis.com/2010/07/07/php-sdk-quickbase-api/#comment-6053</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Tue, 10 May 2011 13:51:43 +0000</pubDate>
		<guid isPermaLink="false">http://mcginn.is/?p=1839#comment-6053</guid>
		<description>There is no SDK available to download ?</description>
		<content:encoded><![CDATA[<p>There is no SDK available to download ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QuickBase PHP API Examples by Tim</title>
		<link>http://joshuamcginnis.com/2009/04/23/quickbase-php-api-examples/#comment-5979</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 06 May 2011 14:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuamcginnis.com/?p=1228#comment-5979</guid>
		<description>It turned out that something was misspelled in the PHP wrapper code. I&#039;m sorry I don&#039;t exactly recall what it was right now...For those of you that use this function call, be sure to double-check the api call spellings, etc.</description>
		<content:encoded><![CDATA[<p>It turned out that something was misspelled in the PHP wrapper code. I&#8217;m sorry I don&#8217;t exactly recall what it was right now&#8230;For those of you that use this function call, be sure to double-check the api call spellings, etc.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

