User Darryl Hein - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:51:52Z http://stackoverflow.com/feeds/user/5441 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/660425/is-there-a-way-to-make-fpdf-fpdi-or-zendpdf-support-the-parsing-of-pdfs-greater 2 Is there a way to make FPDF/FPDI or Zend_Pdf support the parsing of PDFs greater than 1.4? Darryl Hein 2009-03-18T22:59:10Z 2009-11-27T10:26:39Z <p>I am trying to add an existing PDF (created otherwise) to a PDF created with FPDF using FPDI. It seems to work find for most PDFs, but I get the following error:</p> <pre><code>FPDF error: Unable to find xref table. </code></pre> <p>After some testing, I figured out that if I use a PDF version of 1.4 or lower (Acrobat v5 or lower) it seems to work. Looking at the file it seems to be because of a different PDF format.</p> <p>Is there a work around or solution to this? I have probably 10 000+ PDFs uploaded by users, some of the new working, some of them not. It's also annoying that FPDI just dies instead of causing some kind of error or even returning false</p> <p>The only solution I can think of right now is to parse the first line of the PDF file to determine the version and only add the ones that over versions that will work.</p> <p><strong>Edit:</strong></p> <p>I also tried this in Zend_Pdf and it had the following result, using the demo file that comes with the Zend Framework:</p> <pre><code>Fatal error: Uncaught exception 'Zend_Pdf_Exception' with message 'Cross-reference streams are not supported yet.' in /Volumes/Documents/temp/ZendFramework-1.7.7/library/Zend/Pdf/Parser.php:331 Stack trace: #0 /Volumes/Documents/temp/ZendFramework-1.7.7/library/Zend/Pdf/Parser.php(455): Zend_Pdf_Parser-&gt;_loadXRefTable('116') #1 /Volumes/Documents/temp/ZendFramework-1.7.7/library/Zend/Pdf.php(297): Zend_Pdf_Parser-&gt;__construct('/Volumes/Docume...', Object(Zend_Pdf_ElementFactory_Proxy), true) #2 /Volumes/Documents/temp/ZendFramework-1.7.7/library/Zend/Pdf.php(250): Zend_Pdf-&gt;__construct('/Volumes/Docume...', NULL, true) #3 /Volumes/Documents/temp/ZendFramework-1.7.7/demos/Zend/Pdf/demo.php(37): Zend_Pdf::load('/Volumes/Docume...') #4 {main} thrown in /Volumes/Documents/temp/ZendFramework-1.7.7/library/Zend/Pdf/Parser.php on line 331 </code></pre> <p>Is it impossible to parse PDFs greater than 1.4?</p> http://stackoverflow.com/questions/245698/list-files-recursively-in-linux-with-path-relative-to-the-current-directory 6 List files recursively in linux with path relative to the current directory Darryl Hein 2008-10-29T03:28:06Z 2009-11-27T09:48:16Z <p>This is similar to <a href="http://stackoverflow.com/questions/105212/linux-recursively-list-all-files-in-a-directory-including-files-in-symlink-dire">this question</a>, but I want to include the path relative to the current directory in unix. If can do the following:</p> <pre><code>ls -LR | grep .txt </code></pre> <p>But it doesn't include the full paths. For example, I have the follow dir structure:</p> <pre><code>test1/file.txt test2/file1.txt test2/file2.txt </code></pre> <p>The code above will return:</p> <pre><code>file.txt file1.txt file2.txt </code></pre> <p>How can I get it to include the paths relative to the current directory using standard nix commands?</p> http://stackoverflow.com/questions/1804964/php-mass-email-best-practices-phpmailer-gmail/1805062#1805062 0 Answer by Darryl Hein for PHP Mass Email Best Practices? (PHPMailer + Gmail) Darryl Hein 2009-11-26T18:17:42Z 2009-11-26T18:17:42Z <p>Gmail and Google Apps limits you to around 500 emails a day. I'm not sure how that combines with the 500 recipient max, but if you want to send 10 000 emails you'll probably want to find another mail server. I personally use a local server or the ISP or datacenter's SMTP.</p> <p>If you are sending that many emails, I would recommend using the queue so the user's isn't sitting there waiting for the email to be sent.</p> http://stackoverflow.com/questions/170997/what-is-the-best-way-to-remove-a-table-row-with-jquery 5 What is the best way to remove a table row with jQuery? Darryl Hein 2008-10-04T21:04:08Z 2009-11-25T15:10:33Z <p>What is the best method for removing a table row with jQuery?</p> http://stackoverflow.com/questions/411688/how-to-extend-jquery-to-make-it-easier-to-retrieve-the-tagname 4 How to extend jQuery to make it easier to retrieve the tagName Darryl Hein 2009-01-04T21:16:39Z 2009-11-24T18:42:23Z <p>I am looking to extend jQuery so I can easily retrieve the tagName of the first element in a jQuery object. This is what I have come up with, but it doesn't seem to work:</p> <pre><code>$.fn.tagName = function() { return this.each(function() { return this.tagName; }); } alert($('#testElement').tagName()); </code></pre> <p>Any ideas what's wrong?</p> <p>BTW, I'm looking to use this more for testing than in production.</p> http://stackoverflow.com/questions/454875/how-to-do-browser-detection-with-jquery-1-3-with-browser-msie-deprecated 8 How to do browser detection with jQuery 1.3 with $.browser.msie deprecated? Darryl Hein 2009-01-18T09:29:10Z 2009-11-19T07:07:45Z <p>How should browser detection be done now that jQuery 1.3 has deprecated (and I'm assuming removed in a future version) $.browser.msie and similar?</p> <p>I have used this a lot for determining which browser we are in for CSS fixes for pretty much every browser, such as:</p> <pre><code>$.browser.opera $.browser.safari $.browser.mozilla </code></pre> <p>... well I think that's all of them :)</p> <p>The places where I use it, I'm not sure what browser issue is causing the problem, because a lot of times I'm just trying to fix a 1 px difference in a browser.</p> <p><strong>Edit:</strong> With the new jQuery functionality, there is no way to determine if you are in IE6 or IE7. How should one determine this now?</p> http://stackoverflow.com/questions/273181/problems-with-opera-and-tinymce 0 Problems with Opera and TinyMCE Darryl Hein 2008-11-07T18:54:26Z 2009-11-17T00:20:16Z <p>I have been having some general problems with <a href="http://tinymce.moxiecode.com/" rel="nofollow">TinyMCE</a> inside Opera. Some of these include:</p> <ul> <li>the save button produces an error</li> <li>when submitting to a popup with an entire form, including TinyMCE, nothing gets posted to the popup (when TinyMCE is removed it works fine)</li> </ul> <p>Has anyone else experienced these errors and/or does anyone have a solution to make TinyMCE more compatible with Opera?</p> http://stackoverflow.com/questions/1702669/what-is-the-difference-between-floatleft-vs-displayinline-while-every-element/1702878#1702878 0 Answer by Darryl Hein for What is the difference between Float:left vs Display:inline? While every element in browser goes to left by default. Darryl Hein 2009-11-09T18:34:33Z 2009-11-09T18:34:33Z <p>I always remember what floating is by remembering the original <code>&lt;img align="left" /&gt;</code> which acts very similar to <code>float:left</code>. Basically float, floats the image to the left and wraps the text or other content around it. Without float it would display as a piece of text.</p> <p>Float works similar to other document tools where you can have the text wrap around the image (or HTML element).</p> http://stackoverflow.com/questions/170986/what-is-the-best-way-to-add-options-to-a-select-from-an-array-with-jquery 4 What is the best way to add options to a select from an array with jQuery? Darryl Hein 2008-10-04T20:58:46Z 2009-11-09T06:29:54Z <p>What is the best method for adding options to a select from a JSON array using jQuery?</p> <p>I'm looking for something that I don't need a plugin to do, but would also be interested in the plugins that are out there.</p> http://stackoverflow.com/questions/1676012/should-i-be-obfuscating-database-ids-from-my-users 11 Should I be obfuscating database IDs from my users? Darryl Hein 2009-11-04T19:22:24Z 2009-11-07T18:18:41Z <p>I'm being told that I shouldn't be using database IDs directly in HTML code in web applications.</p> <p>Currently I use the IDs on things like table row IDs (tableRow-454 where 454 is the ID of the row in the DB), in hidden or selects fields in forms or in URLs. (I'm not referring to telling people visually on a page that they are ####.)</p> <p>The recommendation I was given was to use some math to obfuscate the ID from the user. I'm thinking this will only make things more complicated and add unnecessary complexity. But I can see some good reasons to make it more difficult to determine a database ID from the HTML.</p> <p>Do you obfuscate the IDs from the user? Or do you care?</p> http://stackoverflow.com/questions/1677042/html-select-only-returning-first-option/1677087#1677087 0 Answer by Darryl Hein for HTML Select only returning First Option Darryl Hein 2009-11-04T22:21:58Z 2009-11-04T22:21:58Z <p>A few things:</p> <ul> <li>Your first selects includes a <code>/</code> at the end of the opening tag. This will effect how the data is submitted.</li> <li>Can you post the final HTML of the page (the output of the PHP). What you have there isn't much help as we don't know what the options are that are in the select. Also include the form table.</li> <li>Check for any other fields with the same name.</li> <li>Try doing <code>print_r($_REQUEST)</code> at the top of the page you are submitting to to see what the values are. (It's possible the class you are using doesn't support multiples as well.)</li> </ul> http://stackoverflow.com/questions/1674970/should-php-code-have-spaces-before-operators 3 Should PHP code have spaces before operators? Darryl Hein 2009-11-04T16:27:10Z 2009-11-04T19:01:58Z <p>I've seen a lot of code recently formatted as the following:</p> <h3>A:</h3> <pre><code>if ($var=='test'){ $var=Foo('blah'.$var1); }else{ // do something } </code></pre> <p>Personally I don't like it and would prefer it as:</p> <h3>B:</h3> <pre><code>if ($var == 'test') { $var = Foo('blah' . $var1); } else { // do something } </code></pre> <p>I think it's much more readable (note the addition of spaces).</p> <p>Is there a general preference in the community or is one way better than another.</p> http://stackoverflow.com/questions/452782/what-video-encoding-and-streaming-services-are-there-out-there 2 What video encoding and streaming services are there out there? Darryl Hein 2009-01-17T04:13:58Z 2009-11-04T11:33:24Z <p>I looking for something that I can either embed their uploader directly or send the video files to that will then encode the video and allow me to stream the video through a player on "my" website.</p> <p>The services, I have found so far are:</p> <ul> <li><a href="http://www.bitsontherun.com/" rel="nofollow">Bits on the Run</a></li> <li><a href="http://www.brightcove.com/" rel="nofollow">Bright Cove</a></li> <li><a href="http://www.videostreamingservices.com/" rel="nofollow">Video Streaming Services</a></li> </ul> <p>The service cannot be like YouTube ewhere the video would also be posted on their website.</p> <p>Are there any other out there? Has any one had experience with any of the above ones?</p> <p>It would be also cool if the service could also encode audio and stream them through Flash video.</p> <p><strong>Edit:</strong> From the number of responses, it looks like this isn't a very common task, although most websites you go to these days have video some where. A lot of that is YouTube, but there are quite a few sites that don't use YouTube either. What are these other sites use?</p> http://stackoverflow.com/questions/304509/variable-variable-class-extensions-in-php-is-it-possible 1 Variable variable class extensions in PHP--is it possible? Darryl Hein 2008-11-20T06:44:54Z 2009-11-02T16:10:51Z <p>Is something like the following possible in PHP?</p> <pre><code>$blah = 'foo1'; class foo2 extends $blah { //... } class foo1 { //... } </code></pre> <p>This gives an error.</p> <p>I want to dynamically set $blah so I can extend whatever class I want.</p> <p><strong>Edit:</strong> The reason for wanting to do this because I wanted to use a function out of another class in a related class. In the end it would have been something like:</p> <pre><code>Final extends foo1 extends foo2 extends foo3 extends foo4 extends parent { ... } </code></pre> <p>In the end I decided to instantiate the other class within the class and use it. Not the best options because they both you 2 of the same classes, but this won't be used that often, so it will work for now. </p> http://stackoverflow.com/questions/645555/should-jquerys-form-submit-not-trigger-onsubmit-within-the-form-tag 5 Should jQuery's $(form).submit(); not trigger onSubmit within the form tag? Darryl Hein 2009-03-14T06:51:36Z 2009-10-28T14:53:06Z <p>I have the following:</p> <pre><code>&lt;script type="text/javascript"&gt; function CancelFormButton(button) { $(button.form).submit(); } &lt;/script&gt; &lt;form onsubmit="alert('here');"&gt; &lt;input type="button" value="Cancel" onClick="CancelFormButton(this);" /&gt; &lt;/form&gt; </code></pre> <p>When I click the "Cancel" button, the onsubmit from the form tag is not triggered.</p> <p>This line instead submits the form successfully: <code>$(button.form).submit();</code> but skips the <code>alert('here');</code> within the onsubmit in the form tag.</p> <p>Is this correct or am I doing something wrong?</p> <p>By the way, in this case, I want this functionality, but I'm just wondering if I'm going to run into a problem in a browser where the onsubmit is triggered.</p> http://stackoverflow.com/questions/1634496/deleting-session-data-via-ajax/1634507#1634507 1 Answer by Darryl Hein for deleting session data via ajax Darryl Hein 2009-10-28T00:27:22Z 2009-10-28T00:35:50Z <p>What do you mean by session data? What programming language on the server (if you are referring to session data on the server)?</p> <p>If you are using PHP, then you'll need to just call a PHP file with AJAX and delete using <code>unset()</code> (such as <code>unset($_SESSION['user_id']</code>) what ever you need to. I see this as just as risky as doing it with a normal request.</p> http://stackoverflow.com/questions/1634501/how-to-remove-everything-from-body-apart-of-one-tag-with-perticular-class-with-jq/1634520#1634520 -1 Answer by Darryl Hein for How to remove everything from body apart of one tag with perticular class with jQuery? Darryl Hein 2009-10-28T00:29:44Z 2009-10-28T00:29:44Z <p>I can't think of any way of doing this. I think a better option would be either grab or code the values of the 2 links in JS, remove everything inside the body and then add the links back in. Maybe not the most efficient, but usually people don't remove <em>everything</em> inside a body tag either.</p> <p>Another option is to add a tag around everything else within the body tag (if you page structure is as simple as your example in the question). This tag doesn't need to be a formatting tag, but could be a span with an ID. In this case you'd just remove everything inside this tag.</p> http://stackoverflow.com/questions/1387205/moving-a-background-image-x-pixels-every-x-milliseconds 0 Moving a background image X pixels every X milliseconds Darryl Hein 2009-09-07T01:20:19Z 2009-10-23T08:00:02Z <p>I have an <a href="http://www.szkolazdusza.com/images/menu-item01-bkg.jpg" rel="nofollow">image sprite of sorts</a> with multiple frames for 1 button. I'm looking to "play" through the frames on rollover of the link/button using jQuery. Currently the image is set as the background of the button using CSS, so I'm looking to change the background position every ~30ms by ~40px along the Y axis (but I can change the direction) 10x so it ends up moving ~400px.</p> <p>I've tried using the animate in jQuery with the a modified background position plugin, similar to that <a href="http://snook.ca/archives/javascript/jquery-bg-image-animations/" rel="nofollow">shown here</a> but it more or less moves the background image up pixel by pixel, not set pixel jumps.</p> <p>Is there a better option?</p> http://stackoverflow.com/questions/665237/what-is-the-best-way-to-deal-with-sessions-when-the-user-may-stay-logged-in-but 1 What is the best way to deal with sessions when the user may stay logged in, but a session key needs to be updated, because of another update? Darryl Hein 2009-03-20T07:26:31Z 2009-10-18T21:28:36Z <p>I'm working a site where users could technically stay logged in forever, as long as they never close their browser (and therefore never get a new session key). Here's what I could see happening: a user leaves a browser open on computer A. The then use computer B, login and change their name which is stored in the session. They logout of B, but A is still logged in and still has their old name stored in the session. Therefore, their name won't be updated till the next time they logout manually or they close their browser and open it again and are logged in through the remember me function.</p> <p>Name is a simple example, but in my case the subscription level of their account is stored in the session and can be changed.</p> <p>How do you deal with this?</p> <p>A few ideas that I have are:</p> <ol> <li><p>After a period of 10 minutes or more, the session data get's reloaded. It might be exactly 10 minutes if the user is highly active as the function will get triggered right at the 10 minute point or it could be after 2 hours if the user leaves and comes back and then triggers the functionality.</p></li> <li><p>Store as little information as possible in the session and load the rest from the DB on every page call. (I really don't like this idea.)</p></li> <li><p>Use database sessions and use the same session on all the computers. I like this, but I could see it getting confusing when something like search criteria are stored in the session--the same criteria would show up on both browsers/comptuers.</p></li> <li><p>For information, even such as the user's name or username/email address, store it in the session, but for other information that would heavily affect their abilities on the site, don't store it in the session and load when needed (attempt to only do it once per instance).</p></li> </ol> <p>Are there other better methods?</p> <p>-- Another option: 5. Use database session and when an update is made load the user's other sessions (just unserialize), change the relevant information and save them back to the database.</p> http://stackoverflow.com/questions/599461/how-do-you-perform-an-and-with-a-join 1 How do you perform an AND with a join? Darryl Hein 2009-03-01T07:57:37Z 2009-10-18T20:08:11Z <p>I have the following data structure and data:</p> <pre><code>CREATE TABLE `parent` ( `id` int(11) NOT NULL auto_increment, `name` varchar(10) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; INSERT INTO `parent` VALUES(1, 'parent 1'); INSERT INTO `parent` VALUES(2, 'parent 2'); CREATE TABLE `other` ( `id` int(11) NOT NULL auto_increment, `name` varchar(10) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; INSERT INTO `other` VALUES(1, 'other 1'); INSERT INTO `other` VALUES(2, 'other 2'); CREATE TABLE `relationship` ( `id` int(11) NOT NULL auto_increment, `parent_id` int(11) NOT NULL, `other_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; INSERT INTO `relationship` VALUES(1, 1, 1); INSERT INTO `relationship` VALUES(2, 1, 2); INSERT INTO `relationship` VALUES(3, 2, 1); </code></pre> <p>I want to find the the parent records with both other's 1 &amp; 2.</p> <p>This is what I've figured out, but I'm wondering if there is a better way:</p> <pre><code>SELECT p.id, p.name FROM parent AS p LEFT JOIN relationship AS r1 ON (r1.parent_id = p.id) LEFT JOIN relationship AS r2 ON (r2.parent_id = p.id) WHERE r1.other_id = 1 AND r2.other_id = 2; </code></pre> <p>The result is 1, "parent 1" which is correct. The problem is that once you get a list of 5+ joins, it gets messy and as the relationship table grows, it gets slow.</p> <p>Is there a better way?</p> <p>I'm using MySQL and PHP, but this is probably pretty generic.</p> http://stackoverflow.com/questions/1585823/is-it-better-in-mysql-to-have-1-large-table-or-2-smaller-tables 0 Is it better in MySQL to have 1 large table or 2 smaller tables? Darryl Hein 2009-10-18T19:41:28Z 2009-10-18T19:56:21Z <p>Here is my situation: I have about 50 different fields of data that I need to store for 1 record (none are the same or repeating). About 15 of the fields are ones that I commonly need to use in queries, while the remainder are used on occasion (~40% of the queries).</p> <p>Should I setup 2 tables, one containing the common fields and the other with the less common fields and join them in a 1:1 relationship? Or should I just put them all in one table?</p> <p>Is there any advantage, speed or otherwise, do doing one or the other?</p> http://stackoverflow.com/questions/1571556/mysql-search-via-php-help/1571565#1571565 0 Answer by Darryl Hein for Mysql search via PHP help Darryl Hein 2009-10-15T10:39:37Z 2009-10-15T10:45:15Z <pre><code>$string = 'find me'; $stringParts = explode(' ', $string); $sql = "SELECT * FROM table_name WHERE 1"; foreach ($stringParts as $word) { // notice the spaces after and before the % $sql .= " AND description LIKE '% " . mysql_real_escape_string(trim($string)) . " %' "; } </code></pre> <p>This should do the trick, with the exception that there needs to be space around each "word". So if you have "find-me" in a description, it won't be included in the results.</p> http://stackoverflow.com/questions/448981/what-characters-are-valid-in-css-class-names 15 What characters are valid in CSS class names? Darryl Hein 2009-01-15T23:37:39Z 2009-10-12T14:08:01Z <p>What characters/symbols are allowed within CSS class names? Things such as:</p> <pre><code>~ ! @ $ % ^ &amp; * ( ) _ + - = , . / ' ; : " ? &gt; &lt; [ ] \ { } | ` # </code></pre> <p>I know a lot of these are invalid, but which are valid?</p> http://stackoverflow.com/questions/430237/is-it-possible-to-use-js-to-open-an-html-select-to-show-its-option-list 4 Is it possible to use JS to open an HTML select to show it's option list? Darryl Hein 2009-01-10T00:17:53Z 2009-10-09T18:56:54Z <p>Is it possible to use JavaScript to open an HTML select to show it's option list?</p> http://stackoverflow.com/questions/171027/jquery-add-table-row 22 jQuery add table row Darryl Hein 2008-10-04T21:33:10Z 2009-10-07T08:00:34Z <p>What is the best method in jQuery to add an additional row to a table as the last row?</p> http://stackoverflow.com/questions/1520660/correct-php-session-and-variable-syntax/1520667#1520667 4 Answer by Darryl Hein for Correct PHP Session and variable syntax Darryl Hein 2009-10-05T15:06:45Z 2009-10-05T15:06:45Z <pre><code> $_SESSION['page' . $numberpages] = $CurrentPage; </code></pre> http://stackoverflow.com/questions/1517368/help-with-a-rewrite-rule-that-isnt-working 1 Help with a rewrite rule that isn't working Darryl Hein 2009-10-04T20:56:47Z 2009-10-04T21:26:09Z <p>I'm using the following rewrite rule, but I can't get it to work:</p> <pre><code>RewriteRule ^rates/([a-z]+)\.php$ /rates.php?c_user_action=view_type&amp;vehicle_type=$1 [QSA,L,NC] </code></pre> <p>The URL I'm using is <code>http://www.example.com/rates/motorhomes.php</code></p> <p>At the moment it's just going to /rates.php without a query string.</p> <p>The weird this is if I change the rewrite expression to <code>^rates-([a-z]+)\.php$</code> and the URL to <code>http://www.example.com/rates-motorhomes.php</code> then it works.</p> <p>I've used something similar on other sites/servers without any issue, but I can't figure out what I'm doing wrong here. This server is running Apache 2.2.</p> <p>I know mod_rewrite is working, because the following 2 rules work:</p> <pre><code>RewriteRule ^blah([a-z]+)\.php$ /rates.php?test=$1 [L] RewriteRule ^(.*)\.[\d]+\.(css|js)$ $1.$2 [L] </code></pre> http://stackoverflow.com/questions/1516640/why-can-i-select-something-out-of-left-join-on-a-null-columnwith-contrived-exam/1517111#1517111 1 Answer by Darryl Hein for Why can I select something out of left join on a NULL column?(with contrived example to reproduce it locally,probably a bug!) Darryl Hein 2009-10-04T18:55:18Z 2009-10-04T20:14:06Z <p>I just ran you create, insert and select on MySQL 5.0.58, 5.0.82 &amp; 5.1.35 and I received the following result, which I think is correct:</p> <pre><code>+------+------+---------+ | id | id | content | +------+------+---------+ | NULL | NULL | NULL | +------+------+---------+ </code></pre> <p>Here is exactly what I used:</p> <pre><code>CREATE TABLE `t1` ( `id` int(10) unsigned default NULL, `link` int(10) unsigned default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; INSERT INTO `t1` VALUES (1, NULL); CREATE TABLE `t2` ( `id` int(10) unsigned NOT NULL auto_increment, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ; INSERT INTO `t2` VALUES (1); CREATE TABLE `t3` ( `id` int(10) unsigned default NULL, `content` varchar(30) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; INSERT INTO `t3` VALUES (1, 'test'); SELECT t2.id, t3.id, t3.content FROM t1 LEFT JOIN t2 ON t1.link = t2.id LEFT JOIN t3 ON t2.id = t3.id WHERE t1.id = 1; </code></pre> http://stackoverflow.com/questions/288984/the-difference-in-months-between-dates-in-mysql 2 The difference in months between dates in MySQL Darryl Hein 2008-11-14T01:38:08Z 2009-09-26T07:36:21Z <p>I'm looking to calculate the number of months between 2 date time fields.</p> <p>Is there a better way than getting the unix timestamp and the dividing by 2 592 000 (seconds) and rounding up whithin MySQL?</p> http://stackoverflow.com/questions/1473269/excel-like-auto-updating-table-cells-using-jquery/1474503#1474503 0 Answer by Darryl Hein for Excel-like auto-updating table cells using jQuery Darryl Hein 2009-09-24T22:23:38Z 2009-09-25T16:36:36Z <p>This should do the trick:</p> <pre><code>$('input[name^="price"], input[name^="quantity"').keyup(function() { $rowTds = $(this).closest('tr').children('td'); // get the row tds price = $rowTds.eq(0).children('input').val(); // get the price quantity = $rowTds.eq(1).children('input').val(); // get the quantity $rowTds.eq(2).children('input').val(price * quantity); // store the value in the total field }); </code></pre> <p>This could probably be shortened into 2 lines (inside the function), but I think this keeps it readable.</p> http://stackoverflow.com/questions/1678421/i-want-to-use-pre-pre-to-keep-the-format-of-input-text-but-the-displayed-tex Comment by Darryl Hein on I want to use <pre></pre> to keep the format of input text, but the displayed text crosses the boundary of its parental tag<div></div>. How to solve this problem? Darryl Hein 2009-11-05T05:00:44Z 2009-11-05T05:00:44Z That's not PHP :) http://stackoverflow.com/questions/1676012/should-i-be-obfuscating-database-ids-from-my-users/1676453#1676453 Comment by Darryl Hein on Should I be obfuscating database IDs from my users? Darryl Hein 2009-11-05T02:36:22Z 2009-11-05T02:36:22Z 2 things: using clean URLs although great, it fails when you have a massive number of products (for example). Something like SO would fail miserably because question titles are not unique and therefore the have included the ID along with the question title. Regarding storing IDs in the session...this works well, except for one thing: tabs :( http://stackoverflow.com/questions/1677042/html-select-only-returning-first-option Comment by Darryl Hein on HTML Select only returning First Option Darryl Hein 2009-11-04T22:24:23Z 2009-11-04T22:24:23Z Maybe also remove it from your question. http://stackoverflow.com/questions/1677042/html-select-only-returning-first-option/1677060#1677060 Comment by Darryl Hein on HTML Select only returning First Option Darryl Hein 2009-11-04T22:23:43Z 2009-11-04T22:23:43Z Hijack? What do you mean? http://stackoverflow.com/questions/1662695/delete-help-for-my-script/1662701#1662701 Comment by Darryl Hein on Delete help for my script Darryl Hein 2009-11-02T18:02:34Z 2009-11-02T18:02:34Z Changing that won't &quot;fix&quot; the query since nothing is wrong with the query. You can use quotes for IDs...I've been doing it for years. http://stackoverflow.com/questions/304509/variable-variable-class-extensions-in-php-is-it-possible/1661648#1661648 Comment by Darryl Hein on Variable variable class extensions in PHP--is it possible? Darryl Hein 2009-11-02T16:10:59Z 2009-11-02T16:10:59Z does that work? http://stackoverflow.com/questions/1634496/deleting-session-data-via-ajax/1634507#1634507 Comment by Darryl Hein on deleting session data via ajax Darryl Hein 2009-10-28T00:30:27Z 2009-10-28T00:30:27Z Why the downvote? http://stackoverflow.com/questions/1585823/is-it-better-in-mysql-to-have-1-large-table-or-2-smaller-tables/1585871#1585871 Comment by Darryl Hein on Is it better in MySQL to have 1 large table or 2 smaller tables? Darryl Hein 2009-10-18T21:12:06Z 2009-10-18T21:12:06Z Good point rexem, but I don't see your answer/suggestion? http://stackoverflow.com/questions/1583279/javascript-not-generating-in-browser-just-prints-code-to-screen Comment by Darryl Hein on javascript not generating in browser, just prints code to screen Darryl Hein 2009-10-17T21:41:28Z 2009-10-17T21:41:28Z @Rachel from the screen shot, it's IE, just the IE tool bar is hidden. http://stackoverflow.com/questions/1583279/javascript-not-generating-in-browser-just-prints-code-to-screen Comment by Darryl Hein on javascript not generating in browser, just prints code to screen Darryl Hein 2009-10-17T21:40:47Z 2009-10-17T21:40:47Z Can you post some of your code, including the tags around the JS? http://stackoverflow.com/questions/1571556/mysql-search-via-php-help/1571566#1571566 Comment by Darryl Hein on Mysql search via PHP help Darryl Hein 2009-10-15T11:05:00Z 2009-10-15T11:05:00Z But you have to use all those fields on every full text search, which depending on the size of the fields can be slow. +1 for a good idea though. http://stackoverflow.com/questions/1571556/mysql-search-via-php-help/1571566#1571566 Comment by Darryl Hein on Mysql search via PHP help Darryl Hein 2009-10-15T10:45:52Z 2009-10-15T10:45:52Z Too bad it requires that a FULLTEXT index is on the column of which there can only be 1 per table...somewhat limiting. http://stackoverflow.com/questions/430237/is-it-possible-to-use-js-to-open-an-html-select-to-show-its-option-list/1545498#1545498 Comment by Darryl Hein on Is it possible to use JS to open an HTML select to show it's option list? Darryl Hein 2009-10-09T22:07:44Z 2009-10-09T22:07:44Z In my case it wouldn't solve the problem exactly, but it would be an option. +1 http://stackoverflow.com/questions/245698/list-files-recursively-in-linux-with-path-relative-to-the-current-directory/1534395#1534395 Comment by Darryl Hein on List files recursively in linux with path relative to the current directory Darryl Hein 2009-10-07T22:13:16Z 2009-10-07T22:13:16Z I'm guessing this depends on the size of the directory. For small directories I think the load would be minimal. http://stackoverflow.com/questions/1430703/php-showing-differences-between-two-strings/1431562#1431562 Comment by Darryl Hein on PHP: Showing Differences Between Two Strings Darryl Hein 2009-10-06T16:02:53Z 2009-10-06T16:02:53Z Most projects haven't even been updated for PHP5 in general, let alone 5.3 :(