User orlandu63 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T17:44:54Z http://stackoverflow.com/feeds/user/23107 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1925818/what-is-the-mysql-equivalent-of-a-postgresql-schema/1925863#1925863 0 Answer by orlandu63 for What is the MySQL equivalent of a PostgreSQL 'schema'? orlandu63 2009-12-18T02:12:02Z 2009-12-18T02:12:02Z <p>Prefixing table names is what's done with most MySQL-driven apps.</p> http://stackoverflow.com/questions/1696751/what-does-the-infix-operator-do-in-haskell 1 What does the : infix operator do in Haskell? orlandu63 2009-11-08T14:45:59Z 2009-11-11T23:42:52Z <p>I'm reading <a href="http://www.haskell.org/tutorial/index.html" rel="nofollow">A Gentle Introduction to Haskell</a> (which is not so gentle) and it repeatedly uses the <code>:</code> operator without directly explaining what it does.</p> <p>So, what exactly does it do?</p> http://stackoverflow.com/questions/1712329/django-recommended-placement-of-template-files 0 Django: Recommended placement of template files? orlandu63 2009-11-11T00:58:40Z 2009-11-11T01:12:57Z <p>It seems that Django doesn't have a convention on the placement of template files. What would be the most logical, preferred placement?</p> <p>(Since Django stresses the interoperability of apps, I assume that the "best" placement would be somewhere under <code>/app/</code>; maybe <code>/app/templates/</code>?)</p> http://stackoverflow.com/questions/1685362/is-there-a-better-more-standard-way-to-perform-sql-queries-in-php-without-usin/1685446#1685446 0 Answer by orlandu63 for Is there a better, more "Standard" way to perform SQL queries in PHP without using a framework? orlandu63 2009-11-06T04:37:15Z 2009-11-06T04:37:15Z <p><a href="http://www.doctrine-project.org/" rel="nofollow">Doctrine</a> is an <a href="http://en.wikipedia.org/wiki/Object-relational%5Fmapping" rel="nofollow">ORM</a> wrapped around <a href="http://php.net/manual/en/book.pdo.php" rel="nofollow">PDO</a>.</p> http://stackoverflow.com/questions/1661631/how-to-add-4-hours-to-time-in-php-mysql/1661666#1661666 13 Answer by orlandu63 for How to add 4 hours to time in PHP/MySQL orlandu63 2009-11-02T14:38:00Z 2009-11-02T14:38:00Z <pre><code>date($format, strtotime("$date + 4 hours")); </code></pre> http://stackoverflow.com/questions/1375647/get-root-dns-entry-from-php-server-get-domain-name-without-www-ect/1375707#1375707 0 Answer by orlandu63 for Get root DNS entry from php server; get domain name without www, ect... orlandu63 2009-09-03T20:18:26Z 2009-09-03T20:18:26Z <pre><code>/[^\.]+\.[escaped|list|of|domains]$/ </code></pre> <p>I think that should work.</p> http://stackoverflow.com/questions/1367454/what-do-operators-in-php-mean/1367473#1367473 13 Answer by orlandu63 for what do "=&" / "&=" operators in php mean? orlandu63 2009-09-02T12:42:43Z 2009-09-02T12:42:43Z <p><code>$a &amp;= $b</code> is short for <code>$a = $a &amp; $b</code> which is the bitwise-and operator.</p> <p><code>$a =&amp; $b</code> assigns $a as a reference to $b.</p> <p>For more information, consult Google.</p> http://stackoverflow.com/questions/1344807/how-to-convert-a-mysql-datetime-in-php-to-m-d-y-format/1344836#1344836 3 Answer by orlandu63 for How to convert a mysql datetime in PHP to m/d/y format? orlandu63 2009-08-28T03:09:35Z 2009-08-28T03:09:35Z <p>SQL:</p> <pre><code>SELECT whatever, UNIX_TIMESTAMP(date) date FROM table WHERE whatever </code></pre> <p>PHP:</p> <pre><code>date('m/d/Y', $result['date']); </code></pre> http://stackoverflow.com/questions/1332229/exection-time-of-php-script/1332278#1332278 0 Answer by orlandu63 for Exection time of php script orlandu63 2009-08-26T04:12:56Z 2009-08-26T04:12:56Z <p>Or, if you use <a href="http://xdebug.org/" rel="nofollow">xdebug</a> (which I recommend), <code>xdebug_time_index()</code></p> http://stackoverflow.com/questions/809620/utf8-or-utf-8 2 UTF8 or UTF-8? orlandu63 2009-04-30T23:47:17Z 2009-08-15T21:13:24Z <p>Which of the two is correct terminology?</p> http://stackoverflow.com/questions/1262327/which-is-the-best-php-framework-to-use-for-large-scale-web-applications/1262565#1262565 1 Answer by orlandu63 for which is the best PHP framework to use for large scale web applications orlandu63 2009-08-11T19:58:53Z 2009-08-11T19:58:53Z <p>Whichever one you like most. Don't worry about the speed of them; once the DB is populated its queries will overshadow almost every factor of page speed.</p> http://stackoverflow.com/questions/1242078/preventing-one-hours-one-minutes-one-days/1242180#1242180 4 Answer by orlandu63 for Preventing "One Hours" "One MInutes" "One Days" orlandu63 2009-08-07T00:00:38Z 2009-08-07T00:00:38Z <p>If your app is international and using the gettext extension, you can do something like this:</p> <pre><code>sprintf(ngettext('%d minute', '%d minutes', $amount), $amount); </code></pre> <p>You can create a wrapper function to it:</p> <pre><code>function pluralize($singular, $plural, $num) { return sprintf(ngettext($singular, $plural, $num), $num); } </code></pre> <p>This is the best way imo.</p> http://stackoverflow.com/questions/1219542/in-where-shall-i-use-isset-and-empty/1219561#1219561 0 Answer by orlandu63 for In where shall I use isset() and !empty() orlandu63 2009-08-02T19:06:47Z 2009-08-02T19:06:47Z <pre><code>isset($variable) === (@$variable !== null) empty($variable) === (@$variable == false) </code></pre> http://stackoverflow.com/questions/1215420/setters-getters-in-one-method/1215440#1215440 2 Answer by orlandu63 for setters/getters in one method orlandu63 2009-08-01T00:13:10Z 2009-08-01T00:13:10Z <p>It can be done using the __call() magic method.</p> <pre><code>class Test { public function __call($name, array $args) { $variable =&amp; $this-&gt;$name; if(!empty($args)) { $variable = $args[0]; } return $variable; } } </code></pre> http://stackoverflow.com/questions/1121444/in-php-is-printf-more-efficient-than-variable-interpolation/1121601#1121601 2 Answer by orlandu63 for In PHP, is printf more efficient than variable interpolation? orlandu63 2009-07-13T19:34:42Z 2009-07-13T19:34:42Z <p>The argument among variable interpolation, string concatenation, multiple-parameter passing, and s?printf is, for a lack of a better word, stupid. Don't worry about this trivial micro-optimization until it becomes the memory/speed bottleneck, which it will never become. So effectively just use whatever you want, factoring in readability, discernibility and plain preference.</p> http://stackoverflow.com/questions/1114702/speed-up-this-code-php-sql-short-code-but-takes-incredibly-long-at-the-moment/1114876#1114876 0 Answer by orlandu63 for Speed up this code - PHP/SQL - Short Code but takes incredibly long at the moment orlandu63 2009-07-11T23:02:11Z 2009-07-12T18:24:32Z <p>This is exactly the scenario for which <a href="http://us3.php.net/manual/en/pdo.prepared-statements.php" rel="nofollow">prepared statements</a> were made:</p> <pre><code>$prepared_statement = $DB-&gt;prepare('INSERT INTO table(column, column) VALUES(?, ?)'); loop { $prepared_statement-&gt;execute(array('value1', 'value2'); } </code></pre> <p>It's implemented in the MySQLi and PDO wrappers. It only compiles the query once and automagically sanitizes the given data, saving time (both developmental and executional) and headache.</p> http://stackoverflow.com/questions/1114027/why-does-this-mysql-statement-throw-a-syntax-error/1114036#1114036 4 Answer by orlandu63 for Why does this MySQL statement throw a syntax error? orlandu63 2009-07-11T16:15:46Z 2009-07-11T16:15:46Z <p>Fix backticks (`) around order to fix this.</p> http://stackoverflow.com/questions/1103642/recursively-build-xml-from-psql-result-set-using-php/1103711#1103711 1 Answer by orlandu63 for Recursively build XML from PSQL Result Set (using PHP) orlandu63 2009-07-09T12:58:45Z 2009-07-09T12:58:45Z <pre><code>$current = $root; foreach($row as $fieldname =&gt; $fieldvalue) { $next = $current-&gt;append(new xmlElement($fieldname)); $current-&gt;write($fieldvalue); $current = $next; } </code></pre> <p>I have a feeling that object-reference reassignment will mess this up; if it doesn't work let me know.</p> http://stackoverflow.com/questions/1098927/php-classes-error/1098976#1098976 0 Answer by orlandu63 for PHP classes error orlandu63 2009-07-08T15:54:23Z 2009-07-08T15:54:23Z <p>On line 33 you are initializing the db class without satisfying its last three parameters. The error is pretty straightforward...</p> http://stackoverflow.com/questions/1097808/are-primitive-data-types-in-php-passed-by-reference/1097837#1097837 1 Answer by orlandu63 for Are primitive data types in PHP passed by reference? orlandu63 2009-07-08T12:45:55Z 2009-07-08T12:45:55Z <p>Passing by reference is actually slower than passing by value in PHP. I can't find the correct citation for this claim; it's somewhere in the "References" section of the PHP manual.</p> http://stackoverflow.com/questions/1095860/is-there-any-way-to-show-or-throw-a-php-warning/1095872#1095872 4 Answer by orlandu63 for Is there any way to show, or throw, a PHP warning? orlandu63 2009-07-08T02:32:07Z 2009-07-08T02:32:07Z <p>You're going the object-oriented approach, so I suggest a look into <a href="http://php.net/manual/en/language.exceptions.php" rel="nofollow">exceptions.</a></p> http://stackoverflow.com/questions/1095801/fluxbb-vs-punbb/1095857#1095857 2 Answer by orlandu63 for FluxBB vs PunBB orlandu63 2009-07-08T02:25:53Z 2009-07-08T02:25:53Z <ul> <li>PunBB 1.2 and FluxBB 1.2 branches are essentially identical.</li> <li>FluxBB 1.3 shouldn't be used because development on it has stopped.</li> <li>FluxBB 1.4 is a crazy extension of FluxBB 1.2 and is not well-tested and conditioned. Do not use.</li> </ul> <p>I recommend the 1.2 branch of either version, as they are identical, mature and well-tested. Your decision should be based on the activity of the two websites. However keep in mind that in the later versions of the 1.2 branch the bugs were posted on the FluxBB forum, and PunBB incorporated them into their branch.</p> http://stackoverflow.com/questions/1009840/syntax-of-http-status-headers 0 Syntax of HTTP-status headers orlandu63 2009-06-17T22:31:43Z 2009-06-26T12:24:49Z <p>There're many ways to write an HTTP-status header:</p> <pre><code>HTTP/1.1 404 Not Found Status: 404 Status: 404 Not Found </code></pre> <p>but which is the semantically-correct and spec-compliant way?</p> <p>Edit: By status headers I mean <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html" rel="nofollow">this</a>, using a function such as PHP's <code>header()</code>.</p> http://stackoverflow.com/questions/1009840/syntax-of-http-status-headers/1048862#1048862 0 Answer by orlandu63 for Syntax of HTTP-status headers orlandu63 2009-06-26T12:24:49Z 2009-06-26T12:24:49Z <p>The closest thing I've found to an answer is the <a href="http://www.fastcgi.com/devkit/doc/fcgi-spec.html#S6.1" rel="nofollow">Fast CGI spec</a>, which states to set status codes through Status and Location headers.</p> http://stackoverflow.com/questions/998592/difference-between-acronym-and-abbr 0 Difference between <acronym> and <abbr>? orlandu63 2009-06-15T21:53:02Z 2009-06-17T21:28:55Z <p>Definitionally they seem the same, yet they are deemed dissimilar enough by the W3C to have separate tag definitions. What is the semantic difference between <code>&lt;acronym&gt;</code> and <code>&lt;abbr&gt;</code> in terms of linguistics, the HTML spec and interpretation.</p> http://stackoverflow.com/questions/963282/how-do-i-create-a-list-or-an-array-of-objects-in-php/963288#963288 4 Answer by orlandu63 for How do I create a list or an array of objects in PHP? orlandu63 2009-06-08T02:54:21Z 2009-06-08T02:54:21Z <pre><code>$items = array(); while($row = mysql_fetch_array($result, MYSQL_BOTH)) { $items[] = $row; } echo 'Count of Order Items...', count($items); </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/960345#960345 8 Answer by orlandu63 for Hidden Features of HTML orlandu63 2009-06-06T19:24:37Z 2009-06-06T20:18:35Z <p>If the <code>for</code> attribute of a <code>&lt;label&gt;</code> tag isn't specified, it is implicitly set as the first child <code>&lt;input&gt;</code>, i.e.</p> <pre><code>&lt;label&gt;Alias: &lt;input name="alias" id="alias"&gt;&lt;/label&gt; </code></pre> <p>is equivalent to</p> <pre><code>&lt;label for="alias"&gt;Alias:&lt;/label&gt; &lt;input name="alias" id="alias"&gt; </code></pre> http://stackoverflow.com/questions/924057/whats-a-good-temporal-distance-to-no-longer-display-relative-dates 0 What's a good temporal distance to no longer display relative dates? orlandu63 2009-05-29T01:50:49Z 2009-05-29T02:02:11Z <p>Relative dates are great to display the temporal incidence of recent activity, but at what distance is it an inconvenience for the user to see a relative date rather than an absolute one?</p> <p>Let's assume the context is a forum.</p> http://stackoverflow.com/questions/791660/css-positioning-and-display-order 1 CSS Positioning and Display Order orlandu63 2009-04-26T21:43:17Z 2009-05-24T14:17:54Z <p>I have a block of HTML:</p> <pre><code>&lt;ul&gt; &lt;li&gt;a&lt;/li&gt; &lt;li&gt;b&lt;/li&gt; &lt;li class="nav"&gt;c&lt;/li&gt; &lt;li class="nav"&gt;d&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>and a CSS ruleset:</p> <pre><code>ul li { display: inline; } li.nav { float: right; } </code></pre> <p>which are not behaving to my intentions: I want it displayed like so:</p> <pre><code>ab cd </code></pre> <p>but instead it's</p> <pre><code>ab dc </code></pre> <p>the difference being the displayed order of elements. How do I have the list items of class "nav" be displayed in their syntactical order?</p> http://stackoverflow.com/questions/791660/css-positioning-and-display-order/903849#903849 0 Answer by orlandu63 for CSS Positioning and Display Order orlandu63 2009-05-24T14:17:54Z 2009-05-24T14:17:54Z <p>I fixed this issue by separating the list into two and <code>float</code>ing them to their respective positions. I wrapped the two lists with a <code>div</code> and applied <a href="http://www.quirksmode.org/css/clearing.html" rel="nofollow"><code>overflow: auto</code></a> to it. My final CSS code looked like this:</p> <pre><code>ul li { display: inline } div.post-info-wrap { overflow: auto } ul.post-info { float: left } ul.nav { float: right } </code></pre> <p>and my markup like:</p> <pre><code>&lt;div class="post-info-wrap"&gt; &lt;ul class="post-info"&gt; &lt;li/&gt; &lt;/ul&gt; &lt;ul class="nav"&gt; &lt;li/&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/160971/what-are-your-language-hangups/161089#161089 Comment by orlandu63 on What are your language "hangups"? orlandu63 2009-12-01T23:59:28Z 2009-12-01T23:59:28Z The latter is doable in php 5.3 http://stackoverflow.com/questions/1696751/what-does-the-infix-operator-do-in-haskell/1697645#1697645 Comment by orlandu63 on What does the : infix operator do in Haskell? orlandu63 2009-11-09T01:22:09Z 2009-11-09T01:22:09Z You're totally right. +1 http://stackoverflow.com/questions/1546555/php-i-cant-trim-off-the-last-character-which-is-a-space Comment by orlandu63 on PHP - I can't trim off the last character which is a space orlandu63 2009-10-09T23:40:33Z 2009-10-09T23:40:33Z vague, vague, vague http://stackoverflow.com/questions/1283725/advise-on-db-table-and-index-please Comment by orlandu63 on Advise on DB table and index please orlandu63 2009-10-07T02:18:56Z 2009-10-07T02:18:56Z advise -&gt; advice http://stackoverflow.com/questions/1528385/massive-dynamic-form-in-php-the-best-approach Comment by orlandu63 on Massive dynamic form in PHP: The best approach? orlandu63 2009-10-06T22:47:19Z 2009-10-06T22:47:19Z OO is not the answer. Stop thinking that OO can solve any problem. http://stackoverflow.com/questions/1508825/is-it-a-bad-idea-to-send-the-hash-of-a-password-instead-of-the-unhashed-password Comment by orlandu63 on Is it a bad idea to send the hash of a password instead of the unhashed password? orlandu63 2009-10-02T11:08:13Z 2009-10-02T11:08:13Z Can someone proficient in English please reword this? http://stackoverflow.com/questions/1474753/sql-query-like-trying-to-find-titles-with-and/1474770#1474770 Comment by orlandu63 on SQL Query (Like) Trying to find Titles with AND orlandu63 2009-09-24T23:58:46Z 2009-09-24T23:58:46Z this will include &quot;brand &quot; and &quot;andean&quot; http://stackoverflow.com/questions/820493/can-an-seo-friendly-url-contain-a-unique-id Comment by orlandu63 on Can an "SEO Friendly" url contain a unique ID? orlandu63 2009-09-18T01:07:46Z 2009-09-18T01:07:46Z Your question assumes that SEO is measurably beneficial, which it is not. http://stackoverflow.com/questions/1141603/mysql-help/1141607#1141607 Comment by orlandu63 on MySQL Help orlandu63 2009-09-05T18:15:57Z 2009-09-05T18:15:57Z Why would linking something easily searchable persuade you to upvote? http://stackoverflow.com/questions/1375647/get-root-dns-entry-from-php-server-get-domain-name-without-www-ect/1375707#1375707 Comment by orlandu63 on Get root DNS entry from php server; get domain name without www, ect... orlandu63 2009-09-03T20:37:03Z 2009-09-03T20:37:03Z Then create a tree or whatever they're called. http://stackoverflow.com/questions/1372235/shift-elements-in-string-array-to-left-to-fill-holes/1372418#1372418 Comment by orlandu63 on Shift elements in string array to left to fill 'holes' orlandu63 2009-09-03T20:34:06Z 2009-09-03T20:34:06Z Good thing I don't work with you: what is i and j? Why are you inlining a self-incrementing operator within an value declaration? It doesn't make things faster, if that's what you thought. http://stackoverflow.com/questions/1284782/how-to-correct-the-user-input-kind-of-google-did-you-mean Comment by orlandu63 on How to correct the user input (Kind of google "did you mean?") orlandu63 2009-09-01T02:41:08Z 2009-09-01T02:41:08Z grammatical nitpick: among -&gt; through http://stackoverflow.com/questions/1331899/php-string-word-processing-question/1331992#1331992 Comment by orlandu63 on PHP string/word processing question orlandu63 2009-08-26T03:03:51Z 2009-08-26T03:03:51Z what is this nonsense? http://stackoverflow.com/questions/1331899/php-string-word-processing-question Comment by orlandu63 on PHP string/word processing question orlandu63 2009-08-26T03:03:03Z 2009-08-26T03:03:03Z The example was contrived, obviously http://stackoverflow.com/questions/1272444/how-do-you-determine-what-should-be-a-primary-key/1272486#1272486 Comment by orlandu63 on How do you determine what should be a primary key? orlandu63 2009-08-13T15:34:09Z 2009-08-13T15:34:09Z @joe not to mention string primary keys use up a ton of space in InnoDB.