User fuentesjr - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:34:45Z http://stackoverflow.com/feeds/user/10708 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/195212/what-are-the-advantages-of-using-a-get-request-over-a-post-request 3 What are the advantages of using a GET request over a POST request? fuentesjr 2008-10-12T07:51:05Z 2009-11-22T01:43:00Z <p>Several of my ajax applications in the past have used GET request but now I'm starting to use POST request instead. POST requests seem to be slightly more secure and definitely more url friendly/pretty. Thus, i'm wondering if there is any reason why I should use GET request at all.</p> http://stackoverflow.com/questions/130396/are-there-constants-in-javascript 7 Are there constants in Javascript? fuentesjr 2008-09-24T22:45:05Z 2009-10-26T19:26:43Z <p>If not, what's the common practice for specifying variables that are used as constants?</p> http://stackoverflow.com/questions/176658/why-not-use-sparkada 1 Why not use SPARKAda? fuentesjr 2008-10-06T23:27:32Z 2009-10-24T09:56:57Z <p>Beyond some valid reasons not to use a new tool such as support of legacy code, no in-house <a href="http://www.praxis-his.com/sparkada/intro.asp" rel="nofollow">SPARKAda</a> knowledge base, why hasn't SPARKAda caught on? It seems like a very sound tool for many projects requiring high reliability, so I don't understand why its not so common. I would be more comfortable knowing that the avionics software that powers my flight was developed using a programming language that lends itself to verifiability techniques as suppose to being written in the C language. </p> http://stackoverflow.com/questions/1611081/what-is-on-and-or-o1/1611095#1611095 0 Answer by fuentesjr for What is O(N) and/or O(1)? fuentesjr 2009-10-23T02:17:38Z 2009-10-23T02:17:38Z <p>It describes the computational complexity of an algorithm. Have a look at this MIT lecture video for a more insight: <a href="http://academicearth.org/lectures/asymptotic-notation-and-recurrences" rel="nofollow">http://academicearth.org/lectures/asymptotic-notation-and-recurrences</a></p> http://stackoverflow.com/questions/1557386/prototypal-vs-functional-oop-in-javascript 3 Prototypal vs Functional OOP in JavaScript fuentesjr 2009-10-12T22:53:37Z 2009-10-13T16:01:40Z <p>What are the pros and cons of each type/approach in writing Object Oriented scripts?</p> <p>Personally, I have found closures (functional? approach) as a way to encapsulate state more natural and <em>perhaps</em> more elegant. I, however, have heard that this use of closures is slower in JavaScript implementations.</p> <p>I would at least like to know where a prototypal approach would be most appropriate.</p> http://stackoverflow.com/questions/1557488/what-is-the-worst-function-in-php/1557677#1557677 0 Answer by fuentesjr for What is the worst function in PHP? fuentesjr 2009-10-13T00:36:22Z 2009-10-13T00:36:22Z <p><code>get_magic_quotes_gpc()</code> ... PHP should have never <a href="http://www.php.net/manual/en/security.magicquotes.why.php" rel="nofollow">used magic quotes</a>.</p> http://stackoverflow.com/questions/1545826/is-there-a-way-to-maintain-a-200mb-immutable-data-structure-in-memory-and-access/1545897#1545897 2 Answer by fuentesjr for Is there a way to maintain a 200MB immutable data structure in memory and access it from a script? fuentesjr 2009-10-09T20:28:40Z 2009-10-09T20:28:40Z <p>This to me sounds like an ideal application for a Bloom Filter. Have a look at the links provided which might help you get it done ASAP.</p> <ol> <li><a href="http://github.com/mj/php-bloomfilter" rel="nofollow">http://github.com/mj/php-bloomfilter</a></li> <li><a href="http://code.google.com/p/php-bloom-filter/" rel="nofollow">http://code.google.com/p/php-bloom-filter/</a></li> </ol> http://stackoverflow.com/questions/235470/how-to-effectively-implement-sessions-in-gae 3 How to effectively implement sessions in GAE? fuentesjr 2008-10-24T22:25:23Z 2009-10-06T05:49:05Z <p>I was wondering about implementing my own sessions (more for an exercise than anything else) for a GAE app I'm working ... at first I was thinking of using the datastore to store the session data. However, every time something needs to be added to the session 'bucket', it would require saving to the datastore. Obviously that's bad since we want to minimize our writes. Then I thought about using memcache ... seemed like a good idea but then we're faced with issues of possible session corruption due to memcache being "evicted through memory pressure" by Google. So does that mean we are left with only the following options:</p> <ol> <li>Storing all session data in cookies</li> <li>Writing all session data to datastore and memcache, and then only reading from memcache</li> </ol> <p>Anyone have any other ideas?</p> http://stackoverflow.com/questions/1502820/favourite-open-source-google-app-engine-apps-java-or-python/1502839#1502839 8 Answer by fuentesjr for Favourite Open Source Google App Engine apps (Java or Python) fuentesjr 2009-10-01T09:13:02Z 2009-10-01T09:13:02Z <p><a href="http://codereview.appspot.com/" rel="nofollow">Rietveld</a> of course</p> http://stackoverflow.com/questions/1502175/php-vs-python-worth-the-investment-in-python/1502241#1502241 0 Answer by fuentesjr for PHP vs Python, worth the investment in Python? fuentesjr 2009-10-01T06:35:57Z 2009-10-01T06:35:57Z <p>Seriously, you shouldn't waste time wondering ... just start learning Python. It's a good investment. In today's world you should know a few languages, and Python should be on your list.</p> http://stackoverflow.com/questions/1501155/php-rand-array/1501172#1501172 5 Answer by fuentesjr for php rand() array fuentesjr 2009-09-30T23:20:57Z 2009-09-30T23:20:57Z <p>Try this:</p> <pre><code>$data = range(1, 100); $results = array_rand($data, 5); print_r($results); </code></pre> http://stackoverflow.com/questions/1496518/bigtable-database-design-theory/1496679#1496679 2 Answer by fuentesjr for Bigtable database design theory fuentesjr 2009-09-30T07:58:09Z 2009-09-30T07:58:09Z <blockquote> <p>... are there books or academic research papers on designing databases for bigtable and similar database paradigms?</p> </blockquote> <p>Well Bigtable is essentially a database itself, so I take it that your question is more on how to model and to some extent design your schema in these Bigtable like databases. More specifically you would like to know how to do this on Google's App Engine.</p> <p>With GAE you will be using the Datastore API, which adds a significant layer of abstraction to Bigtable, so to some extent you don't have to worry about low level details as you would if you were using something like HBase. There are a few posts on SO (<a href="http://stackoverflow.com/questions/103727/how-to-think-in-data-stores-instead-of-databases/104777#104777">here's a great answer by</a> a Google Engineer who I think is part of GAE team) that will guide you and offer hints on how to approach this new type of Database system.</p> <p>Helpful Info:</p> <ol> <li><a href="http://hadoop.apache.org/hbase/" rel="nofollow">HBase</a> was inspired by Google's <a href="http://labs.google.com/papers/bigtable.html" rel="nofollow">Bigtable</a> paper</li> <li><a href="http://www.hypertable.org/" rel="nofollow">Hypertable</a> was also inspired by Bigtable paper</li> <li><a href="http://incubator.apache.org/cassandra/" rel="nofollow">Cassandra</a>'s <em>Data Model</em> was inspired by Bigtable paper</li> <li><a href="http://hadoop.apache.org/" rel="nofollow">Hadoop</a> was inspired by Google's <a href="http://labs.google.com/papers/gfs.html" rel="nofollow">GFS</a> and <a href="http://labs.google.com/papers/mapreduce.html" rel="nofollow">MapReduce</a> papers</li> </ol> http://stackoverflow.com/questions/1494953/is-there-a-function-to-extract-a-column-from-an-array-in-php/1495005#1495005 3 Answer by fuentesjr for Is there a function to extract a 'column' from an array in PHP? fuentesjr 2009-09-29T21:19:38Z 2009-09-29T21:19:38Z <p>Here's a functional way of doing it:</p> <pre><code>$data = array( array('page' =&gt; 'page1', 'name' =&gt; 'pagename1'), array('page' =&gt; 'page2', 'name' =&gt; 'pagename2'), array('page' =&gt; 'page3', 'name' =&gt; 'pagename3')); $result = array_map(create_function('$arr', 'return $arr["name"];'), $data); print_r($result); </code></pre> http://stackoverflow.com/questions/181097/is-there-a-way-to-add-an-onclick-event-to-an-asp-net-label-server-control 4 Is there a way to add an onclick event to an ASP.NET Label server control? fuentesjr 2008-10-08T01:45:21Z 2009-09-09T06:29:16Z <p>I wanted to do something like this:</p> <pre><code>&lt;asp:Label ID="lblMyLabel" onclick="lblMyLabel_Click" runat="server"&gt;My Label&lt;/asp:Label&gt; </code></pre> <p>I know that in Javascript I can do:</p> <pre><code>&lt;span onclick="foo();"&gt;My Label&lt;/span&gt; </code></pre> <p>So I'm wondering why I can't do that with a Label object.</p> http://stackoverflow.com/questions/109488/is-it-bad-design-to-use-table-tags-when-displaying-forms-in-html 10 Is it bad design to use table tags when displaying forms in html? fuentesjr 2008-09-20T21:30:04Z 2009-07-26T16:20:34Z <p>I keep hearing that <code>div</code> tags should be used for layout purposes and not <code>table</code> tags. So does that also apply to form layout? I know a form layout is still a layout, but it seems like creating form layouts with <code>div</code>s requires more <code>html</code> and <code>css</code>. So with that in mind, should forms layouts use <code>div</code> tags instead?</p> http://stackoverflow.com/questions/100732/why-is-if-not-someobj-better-than-if-someobj-none-in-python 8 Why is if not someobj: better than if someobj == None: in Python? fuentesjr 2008-09-19T09:29:19Z 2009-07-12T22:11:27Z <p>I seen several examples of code like this:</p> <pre><code>if not someobj: #do something </code></pre> <p>But I'm wondering why not do:</p> <pre><code>if someobj == None: #do something </code></pre> <p>Is there any difference? Does one have an advantage over the other?</p> http://stackoverflow.com/questions/1071425/google-app-engine-datastore-does-not-support-operator/1071722#1071722 1 Answer by fuentesjr for Google App Engine datastore does not support operator + fuentesjr 2009-07-01T22:50:01Z 2009-07-01T22:50:01Z <p>This sounds similar to the issue with <a href="http://code.google.com/appengine/articles/sharding%5Fcounters.html" rel="nofollow">counters in app engine</a>. The simplest solution off the top of my head is to add a votesTotal attribute that is updated every time votesUp and votesDown is updated. Thus there's no large computation when you query for votesTotal > foo_val.</p> http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a 9 Is there a function in Python to print all the current properties and values of an object? fuentesjr 2008-10-10T16:19:27Z 2009-06-05T07:12:53Z <p>So what I'm looking for here is something like <a href="http://us2.php.net/print_r" rel="nofollow">PHP's print_r</a> function. This is so I can debug my scripts by seeing what's the state of the object in question.</p> http://stackoverflow.com/questions/214348/what-is-the-smallest-extjs-package 1 What is the smallest ExtJS package? fuentesjr 2008-10-18T01:25:47Z 2009-05-25T01:26:15Z <p>Does anyone know the bare minimum files required for Ext JS 2.2? I know the ExtJS site has a feature to <a href="http://extjs.com/products/extjs/build/" rel="nofollow">"build"</a> a small version of ExtJS (ext.js) as a replacement for ext-all.js but that's for minimizing the size of ExtJS on the client. I'm interested in minimizing what's on the server. Currently the SDK comes with the following subdirectories:</p> <h2>ext-2.2/</h2> <pre><code>adapter air build docs examples resources source </code></pre> <p>I think its pretty safe to remove examples, docs, and air. However, are there other things we can remove to make this smaller or is there a resource (besides the large javascript source code corpus) that documents the minimum required files?</p> http://stackoverflow.com/questions/69909/is-it-better-to-write-new-code-software-for-python-3-0-or-python-2-6 7 Is it better to write new code/software for Python 3.0 or Python 2.6? fuentesjr 2008-09-16T06:51:30Z 2009-05-09T03:25:15Z <p>The question pertains to starting new projects using Python. Furthermore, I am referring to developing for the final releases of Python 2.6 and 3.0 (as oppose to Betas and RCs) which I imagine will be out in a few months.</p> http://stackoverflow.com/questions/837237/django-template-for-loop/837260#837260 1 Answer by fuentesjr for Django template for loop fuentesjr 2009-05-07T22:00:06Z 2009-05-07T22:00:06Z <p>{{ forloop.last }}</p> http://stackoverflow.com/questions/107405/how-do-you-send-a-head-http-request-in-python 9 How do you send a HEAD HTTP request in Python? fuentesjr 2008-09-20T06:38:38Z 2009-05-06T08:04:22Z <p>So what I'm trying to do here is get the headers of a given URL so I can determine the mime-type. I want to be able to see if <a href="http://somedomain/foo/" rel="nofollow">http://somedomain/foo/</a> will return an html document or a jpg image for example. Thus, I need to figure out how to send a HEAD request so that I can read the mime-type without having to download the content. Does anyone know of an easy way of doing this?</p> http://stackoverflow.com/questions/821524/what-are-phps-advantages-over-ruby-on-rails-and-django/821593#821593 0 Answer by fuentesjr for What are PHP's advantages over Ruby on Rails and Django? fuentesjr 2009-05-04T19:30:16Z 2009-05-04T19:30:16Z <p>Scalability is always a challenging issue, but I suspect it is easier to scale a PHP web application than its equivalent Rails or Django applicaton.</p> http://stackoverflow.com/questions/813839/how-can-i-remove-unused-indexes-in-google-application-engine/813870#813870 6 Answer by fuentesjr for How can I remove unused indexes in Google Application Engine? fuentesjr 2009-05-02T01:02:34Z 2009-05-02T01:08:39Z <p>It is documented <a href="http://code.google.com/appengine/docs/python/tools/uploadinganapp.html#Deleting%5FUnused%5FIndexes" rel="nofollow">here</a>. Hope that helps.</p> <blockquote> <p><strong>Deleting Unused Indexes</strong></p> <p>When you change or remove an index from index.yaml, the original index is not deleted from App Engine automatically. This gives you the opportunity to leave an older version of the app running while new indexes are being built, or to revert to the older version immediately if a problem is discovered with a newer version.</p> <p>When you are sure that old indexes are no longer needed, you can delete them from App Engine using the following command:</p> <pre><code>appcfg.py vacuum_indexes myapp/ </code></pre> <p>This command deletes all indexes for the app that are not mentioned in the most recently uploaded version of index.yaml.</p> </blockquote> http://stackoverflow.com/questions/200284/what-are-alternatives-to-extjs 6 What are alternatives to ExtJS? fuentesjr 2008-10-14T07:43:49Z 2009-05-01T16:42:20Z <p>So what I'm looking for is a javascript framework I can use that has several UI controls. I have taken a look at <a href="http://ui.jquery.com/home" rel="nofollow">jQuery</a> but those controls are very basic compared to ExtJS. Are there any other competitive alternatives?</p> http://stackoverflow.com/questions/664318/how-to-do-paypal-google-checkout-in-an-auction-style-web-application 0 How to do PayPal/Google Checkout in an Auction style web application? fuentesjr 2009-03-19T22:34:21Z 2009-04-30T21:02:57Z <p>I'm curious if there is a way to process/connect buyers and sellers on my site without the site having to charge the buyer and credit the seller. In other words, I don't want to <em>touch</em> the money, but I do want to integrate the process as much as possible on my site. </p> <p>I guess what I'm asking is how do auction sites manage the transactions between buyer and seller? I really don't want my site to resort to emailing the buyer with the seller's contact information and saying .... "here's the sellers info. Good luck with that."</p> <p>Ebay seems to allow a buyer to go to PayPal and pay the seller, but returns back to Ebay with payment confirmation. Even though the transaction is between Buyer and Seller, Ebay is able to retrieve some details about that transaction. Is this simply because Ebay owns PayPal, or can other sites do the same?</p> http://stackoverflow.com/questions/256293/what-is-the-relationship-between-gvrs-rietveld-and-androids-gerrit 1 What is the relationship between GvR's Rietveld and Android's Gerrit? fuentesjr 2008-11-02T00:06:47Z 2009-04-25T15:29:47Z <p>What is the relationship between <a href="http://code.google.com/appengine/articles/rietveld.html" rel="nofollow">Rietveld</a> and <a href="http://review.source.android.com/" rel="nofollow">Gerrit</a> (Android's code review application)?</p> http://stackoverflow.com/questions/740566/which-web-development-framework-works-best-with-google-app-engine/740594#740594 3 Answer by fuentesjr for Which web development framework works best with Google App Engine? fuentesjr 2009-04-11T18:35:00Z 2009-04-11T18:54:46Z <p>Personally, I have found Python to be more fun. That's just me. However there are several commited Java developers out there that will appreciate the Java support in GAE. Furthermore, supporting Java was a good choice by Google since it will allow the GAE platform to potentially host many other languages. It's obviously a little early to expect all JVM based languages to run on GAE, but the future looks promising. For now we can look at what is and isn't working by taking a look at <a href="http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine?pli=1" rel="nofollow">this GAE Java Group Page</a>.</p> <p>Coming back to Python, I think small web applications will work great with the built-in webapp framework. Other applications will benefit more from Django 1.0. Have a look at the <a href="http://code.google.com/appengine/articles/" rel="nofollow">GAE articles</a> under the frameworks section for a few good reads on this. In any case, you will undoubtedly have restrictions in any of your choices since most web frameworks are designed with relational databases in mind ... which datastore/bigtable is not. Furthermore, the GAE platform has to be sandboxed for security reasons which also restrict you to some extent. Hope this helps.</p> http://stackoverflow.com/questions/79850/how-do-you-design-data-models-for-bigtable-datastore-gae 7 How do you design data models for Bigtable/Datastore (GAE) ? fuentesjr 2008-09-17T04:02:53Z 2009-03-01T00:05:41Z <p>Since the Google App Engine Datastore is based on <a href="http://labs.google.com/papers/bigtable.html" rel="nofollow">Bigtable</a> and we know that's not a relational database, how do you design a <strong><em>database schema</em>/<em>data model</em></strong> for applications that use this type of database system?</p> http://stackoverflow.com/questions/568609/why-isnt-suhosin-part-of-the-php-core 5 Why isn't Suhosin part of the PHP core? fuentesjr 2009-02-20T07:36:33Z 2009-02-25T00:16:25Z <p>It seems Suhosin patches and extends the PHP core as a means to protect users from flaws in the core. It also seems some smart people are using this system. Since it appears to be a good thing, I'm curious as to why its not part of the PHP core to begin with. Anybody know?</p> <p><strong>Update:</strong> Apparently some distributions of Linux also package PHP with Suhosin by default. This seems to be true for Debian (Lenny at least) and Arch Linux. Any other distributions package PHP with Suhosin by default?</p> http://stackoverflow.com/questions/1611081/what-is-on-and-or-o1 Comment by fuentesjr on What is O(N) and/or O(1)? fuentesjr 2009-10-23T02:14:45Z 2009-10-23T02:14:45Z for a comprehensive description see <a href="http://en.wikipedia.org/wiki/Big_O_notation" rel="nofollow">en.wikipedia.org/wiki/Big_O_notation</a> http://stackoverflow.com/questions/1609167/why-not-use-php-as-a-desktop-programming-language Comment by fuentesjr on Why NOT use PHP as a desktop programming language? fuentesjr 2009-10-22T22:45:05Z 2009-10-22T22:45:05Z @nathan In retrospect, I agree that my comment came off insulting. I don't mean to insult you. However, I do strongly oppose using PHP (or other tools for that matter) for problems/tasks it wasn't designed for, especially when there are alternatives. Furthermore, I wasn't calling you out directly, so I'll rephrase again. &quot;However, perhaps it would suite everyone if one has a clear picture of the problem domain and toolset.&quot; Lastly, this was simply a comment and not a formal answer, so that's why I didn't provide any specifics to your question. http://stackoverflow.com/questions/1609167/why-not-use-php-as-a-desktop-programming-language Comment by fuentesjr on Why NOT use PHP as a desktop programming language? fuentesjr 2009-10-22T19:57:18Z 2009-10-22T19:57:18Z Well technically you are asking two questions so you might want to choose one. Second, Why NOT use a hammer to screw a tiny bolt? With enough effort, you might just get it to hold together. If you squint your eyes enough, that bolt might look like a nail. However, perhaps it would suite everyone if you have a clear picture of the problem domain and toolset. I think we call those people professionals and engineers. http://stackoverflow.com/questions/1609167/why-not-use-php-as-a-desktop-programming-language/1609242#1609242 Comment by fuentesjr on Why NOT use PHP as a desktop programming language? fuentesjr 2009-10-22T19:32:54Z 2009-10-22T19:32:54Z Well put my friend :) I'm getting tired of sanding corners myself. http://stackoverflow.com/questions/1592424/xmpp-web-client-for-commercial-web-application Comment by fuentesjr on XMPP web client for commercial web application fuentesjr 2009-10-20T04:43:42Z 2009-10-20T04:43:42Z Strophejs has an MIT license, with some BSD code/files: <a href="http://github.com/metajack/strophejs" rel="nofollow">github.com/metajack/strophejs</a> http://stackoverflow.com/questions/1586344/is-there-a-book-on-php-for-socket-programming-or-a-general-programming-language Comment by fuentesjr on is there a book on php for socket programming? or a general programming language? fuentesjr 2009-10-18T23:48:55Z 2009-10-18T23:48:55Z I can't imagine any good reason why you would want to do this http://stackoverflow.com/questions/1557386/prototypal-vs-functional-oop-in-javascript/1557526#1557526 Comment by fuentesjr on Prototypal vs Functional OOP in JavaScript fuentesjr 2009-10-13T22:27:05Z 2009-10-13T22:27:05Z Thanks for the great answer. Personally I'm fine with not having <i>true</i> private members since I come from a Python background where everyone is assumed to be a responsible adult. http://stackoverflow.com/questions/1557386/prototypal-vs-functional-oop-in-javascript/1557526#1557526 Comment by fuentesjr on Prototypal vs Functional OOP in JavaScript fuentesjr 2009-10-13T00:27:48Z 2009-10-13T00:27:48Z Isn't it also a disadvantage that the prototype style exposes any desired &quot;private&quot; members? http://stackoverflow.com/questions/47786/google-app-engine-is-it-possible-to-do-a-gql-like-query/47788#47788 Comment by fuentesjr on Google App Engine: Is it possible to do a Gql LIKE query? fuentesjr 2009-10-13T00:20:53Z 2009-10-13T00:20:53Z To be fair, GAE was never designed to be a relational system. After all, we don't expect Tokyo Cabinet to support JOINs either. Perhaps you don't like GAE because it doesn't use a Relational system then. http://stackoverflow.com/questions/47786/google-app-engine-is-it-possible-to-do-a-gql-like-query Comment by fuentesjr on Google App Engine: Is it possible to do a Gql LIKE query? fuentesjr 2009-10-12T23:30:47Z 2009-10-12T23:30:47Z The continued problem revolves around people trying to use GAE Datastore as if it were a Relational/~SQL database. By Google introducing GQL, it further leads people into thinking in terms of SQL systems. However I understand that Google is trying to make the transition for everyone much easier even though I'm not sure this is the right approach. http://stackoverflow.com/questions/1546908/how-can-i-return-ajax-response-text Comment by fuentesjr on How can I return AJAX response text? fuentesjr 2009-10-10T03:11:42Z 2009-10-10T03:11:42Z Maybe if your accept rate goes up you'll have better luck :/ http://stackoverflow.com/questions/1502175/php-vs-python-worth-the-investment-in-python/1502213#1502213 Comment by fuentesjr on PHP vs Python, worth the investment in Python? fuentesjr 2009-10-01T06:33:55Z 2009-10-01T06:33:55Z &quot;Ruby is challenging Lisp and Smalltalk on the ...&quot; That is HIGHLY subjective. Personally, I would consider Lisp in another league. http://stackoverflow.com/questions/1496518/bigtable-database-design-theory/1496860#1496860 Comment by fuentesjr on Bigtable database design theory fuentesjr 2009-09-30T19:02:02Z 2009-09-30T19:02:02Z +1 Glad to see you on here, Nick. I'm a fan :) http://stackoverflow.com/questions/1494953/is-there-a-function-to-extract-a-column-from-an-array-in-php Comment by fuentesjr on Is there a function to extract a 'column' from an array in PHP? fuentesjr 2009-09-30T18:55:40Z 2009-09-30T18:55:40Z I don't mean to sound like a jerk, but this isn't really a complicated question that in a few days will reveal an amazing solution. http://stackoverflow.com/questions/1494953/is-there-a-function-to-extract-a-column-from-an-array-in-php Comment by fuentesjr on Is there a function to extract a 'column' from an array in PHP? fuentesjr 2009-09-30T06:20:07Z 2009-09-30T06:20:07Z Would you mine accepting one of the answers given if you don't mind.