User Flubba - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:16:39Z http://stackoverflow.com/feeds/user/137 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/899/best-subversion-client-for-mac-os 28 Best subversion client for Mac OS Flubba 2008-08-04T00:09:39Z 2009-12-21T09:52:55Z <p>On Windows, Tortoise SVN is the daddy, no question. On the Mac there is nothing as simple and integrated, but there is a fair choice of tools. Which GUI clients are worth checking out and why?</p> http://stackoverflow.com/questions/1834070/any-tutorials-on-how-to-use-phpdocumentor 3 Any tutorials on how to use phpDocumentor? Flubba 2009-12-02T16:26:36Z 2009-12-07T05:29:25Z <p>Hello Stackers...</p> <p>I want to start using phpDocumentor but I'm finding it hard going - the web interface is not playing nicely and I can't get it to parse the example files </p> <p>I probably haven't set it up right and I would like a nice step-by-step tutorial (i.e. <a href="http://manual.phpdoc.org/HTMLSmartyConverter/HandS/li%5FphpDocumentor.html" rel="nofollow">NOT THIS ONE</a>) to check where I've gone wrong and hopefully get it parsing something</p> <p>But I can't find anything via google - can anyone suggest any good tutorials or resources for getting started with phpdoc?</p> <p>Many thanks!</p> <p>Ian</p> <p>EDIT: Thanks for jumping in, ashnazg! These were the steps I followed:</p> <ol> <li>Pear wasn't working on my Mac so downloaded version 1.4.3 and unzipped it to a directory</li> <li>Specified the absolute path to sample file 2 on my HD under file tab</li> <li>Specified an output folder which was world writable</li> <li>Clicked Create... stuff going on in log, media folder created but no report. Log concludes "ERROR: nothing parsed"</li> </ol> <p>I since got Pear working and installed phpdoc that way; can use it through the command line, but any ideas about what could be up with the web interface to prevent it from parsing the file? Seems to be happy in all other respects.</p> <p>EDIT 2: Thanks for the link to the <a href="http://www.developer.com/lang/php/article.php/10941%5F3440261%5F2/Documenting-PHP-Code-with-PHPDocumentor.htm" rel="nofollow">Developer.com article</a>, Liz: It's very basic but a useful quickstart.</p> http://stackoverflow.com/questions/290079/tux-varnish-or-squid 1 Tux, Varnish or Squid? Flubba 2008-11-14T13:31:15Z 2009-12-03T11:24:02Z <p>Hi folks</p> <p>We need a web content accelerator for static images to sit in front of our Apache web front end servers</p> <p>Our previous hosting partner used Tux with great success and I like the fact it's part of Red Hat Linux which we're using, but its last update was in 2006 and there seems little chance of future development. Our ISP recommends we use Squid in reverse caching proxy role.</p> <p>Any thoughts between Tux and Squid? Compatibility, reliability and future support are as important to us as performance.</p> <p>Also, I read in other threads here about Varnish; anyone have any real-world experience of Varnish compared with Squid, and/or Tux, gained in high-traffic environments?</p> <p>Cheers</p> <p>Ian</p> <p>UPDATE: We're testing Squid now. Using ab to pull the same image 10,000 times with a concurrency of 100, both Apache on its own and Squid/Apache burned through the requests very quickly. But Squid made only a single request to Apache for the image then served them all from RAM, whereas Apache alone had to fork a large number of workers in order to serve the images. It looks like Squid will work well in freeing up the Apache workers to handle dynamic pages.</p> http://stackoverflow.com/questions/1836889/select-duplicates-with-php-mysql-for-merging-process/1838680#1838680 0 Answer by Flubba for Select duplicates with PHP & MySql for merging process Flubba 2009-12-03T09:17:00Z 2009-12-03T09:17:00Z <p>Or you could try something like the second query here which uses a derived table:</p> <pre><code>mysql&gt; select * from contacts ; +----+--------+---------+ | id | fname | lname | +----+--------+---------+ | 1 | Annie | Haddock | | 2 | Annie | Haddock | | 3 | Ginger | Mole | | 4 | Ted | Ted | | 5 | Ted | Ted | +----+--------+---------+ 5 rows in set (0.01 sec) mysql&gt; select id, fname, lname, total from (select *, count(*) as total from contacts group by fname, lname) people where total &gt; 1; +-----------+--------------+--------------+--------------+ | people.id | people.fname | people.lname | people.total | +-----------+--------------+--------------+--------------+ | 1 | Annie | Haddock | 2 | | 4 | Ted | Ted | 2 | +-----------+--------------+--------------+--------------+ 2 rows in set (0.01 sec) </code></pre> <p>then just iterate through it with foreach. Note that "people" above is an alias for the derived table created by the inner select</p> http://stackoverflow.com/questions/1838475/php-associative-array-strucuture/1838570#1838570 0 Answer by Flubba for PHP Associative Array Strucuture Flubba 2009-12-03T08:47:24Z 2009-12-03T08:47:24Z <p>Syntactically nothing wrong, but what on earth would the point of it be?</p> <p>The original array $money would be easier to work with, I suspect.</p> <p>But I agree with the commenter above - not enough information to go on.</p> http://stackoverflow.com/questions/157667/method-not-implemented-error-firefox-3 3 "Method Not Implemented" error - Firefox 3 Flubba 2008-10-01T13:46:02Z 2009-11-26T20:09:28Z <p>Hi all</p> <p>Getting sporadic errors from users of a CMS; Ajax requests sometimes result in a "501 Method not implemented" response from the server. Not all the time; usually works. </p> <p>Application has been stable for months. Users seem to be getting it with Firefox 3. I've seen a couple references via Google to such problems being related to having "charset=UTF-8" in the Content-type header, but these may be spurious</p> <p>Has anyone seen this error or have any ideas about what the cause could be?</p> <p>Thanks</p> <p>Ian</p> http://stackoverflow.com/questions/913/what-javascript-library-would-you-choose-for-a-new-project-and-why 62 What JavaScript library would you choose for a new project and why? Flubba 2008-08-04T00:27:35Z 2009-11-18T18:52:24Z <p>There seem to be a lot of choices now for DOM manipulation, Ajax and effects. Has anyone any experience of the different options and their pros and cons?</p> http://stackoverflow.com/questions/2332/how-do-i-turn-on-line-numbers-by-default-in-textwrangler-on-the-mac 2 How do I turn on line numbers by default in TextWrangler on the Mac? Flubba 2008-08-05T13:57:05Z 2009-11-09T14:26:33Z <p>I am fed up having to turn them on every time I open the application.</p> http://stackoverflow.com/questions/1524542/mysql-data-backup/1524642#1524642 0 Answer by Flubba for mySQL Data Backup Flubba 2009-10-06T09:54:59Z 2009-10-06T09:54:59Z <p>Watch out if using mysqldump on large tables using the MyISAM storage engine; it blocks selects while the dump is running on each table and this can take down busy sites for 5-10 minutes in some cases.</p> <p>Using InnoDB, by comparison, you get non-blocking backups because of its row-level locking, so this is not such an issue.</p> <p>If you need to use MyISAM, a common strategy is to replicate to a second MySQL instance and do the mysqldump against the replicated copy instead.</p> http://stackoverflow.com/questions/1173583/php-split-string-using-regex/1173646#1173646 2 Answer by Flubba for php split string using regex Flubba 2009-07-23T18:30:51Z 2009-07-23T18:30:51Z <p>Is the format of the text file imposed on you? If you have the choice, I'd suggest you don't use spaces to separate the fields in the text file. Instead, use | or $$ or something you can be assured won't appear in the content, then just split it to an array.</p> http://stackoverflow.com/questions/1171453/unbelievable-php-script-wont-echo-out-string/1171473#1171473 2 Answer by Flubba for Unbelievable PHP script won't echo out string Flubba 2009-07-23T12:41:31Z 2009-07-23T12:53:31Z <p>Put exit; after the echo start start start and see if that works. Look in the apache error log for clues. Comment out the rest of the PHP code in the file and see if it works then...</p> <p>UPDATE</p> <p>I have had this when copy pasting white space from a browser sometimes - e.g. copy/pasting some code from a web page. Sometimes weird control characters get embedded invisibly in the white space, and I find that deleting the whitespace and re-entering it fixes it. Did you copy paste anything into this file?</p> http://stackoverflow.com/questions/35047/migrating-database-changes-from-development-to-live 9 Migrating database changes from development to live Flubba 2008-08-29T19:02:34Z 2009-06-26T02:52:02Z <p>Perhaps the biggest risk in pushing new functionality to live lies with the database modifications required by the new code. In Rails, I believe they have 'migrations', in which you can programmatically make changes to your development host, and then make the same changes live along with the code that uses the revised schema. And roll both back if needs be, in a synchronised fashion.</p> <p>Has anyone come across a similar toolset for PHP/MySQL? Would love to hear about it, or any programmatic or process solutions to help make this less risky...</p> http://stackoverflow.com/questions/1746/how-can-i-get-at-the-matches-when-using-pregreplace-in-php 4 How can I get at the matches when using preg_replace in PHP? Flubba 2008-08-05T00:35:17Z 2009-06-23T17:54:51Z <p>I am trying to grab the capital letters of a couple of words and wrap them in spans. I am using preg_replace, but it's not outputting anything.</p> <pre><code>preg_replace("/[A-Z]/", "&lt;span class=\"initial\"&gt;$1&lt;/span&gt;", $str)<br></code></pre> http://stackoverflow.com/questions/23886/sql-pronunciation/23914#23914 1 Answer by Flubba for SQL Pronunciation Flubba 2008-08-23T03:13:49Z 2009-05-07T22:01:15Z <blockquote> <blockquote> <p><em>sequel isn't ms, sequel is ms, oracle, db2... basically any real database. pronouncing by letter just spells out your ignorance.</em></p> </blockquote> </blockquote> <p>Ignorance? Ridiculous. Reserve your opprobrium for people who demonstrate stupidity or offensive behaviour, please. Do you have a reference for your very strange assertion? </p> http://stackoverflow.com/questions/13569/mysqli-or-pdo-what-are-the-pros-and-cons 20 mysqli or PDO - what are the pros and cons? Flubba 2008-08-17T09:47:22Z 2009-04-10T06:04:27Z <p>In our place we're split between using mysqli and PDO for stuff like prepared statements and transaction support. Some projects use one, some the other. There is little realistic likelihood of us ever moving to another RDBMS.</p> <p>I prefer PDO for the single reason that it allows named parameters for prepared statements, and as far as I am aware mysqli does not.</p> <p>Are there any other pros and cons to choosing one over the other as a standard as we consolidate our projects to use just one approach?</p> http://stackoverflow.com/questions/47535/sql-to-add-column-with-default-value-access-2003 1 SQL to add column with default value - Access 2003 Flubba 2008-09-06T15:08:35Z 2009-03-09T02:51:24Z <p>Updating an old ASP/Access site for a client (and hating it) - I need SQL to add a column to an existing table and set a default value. Doesn't work - any ideas?</p> <p>This works fine</p> <pre><code>ALTER TABLE documents ADD COLUMN membersOnly NUMBER </code></pre> <p>I want this to work:</p> <pre><code>ALTER TABLE documents ADD COLUMN membersOnly NUMBER DEFAULT 0 </code></pre> <p>Have googled and seen instructions for default values work for other field types but I want to add number. Thanks!</p> http://stackoverflow.com/questions/1762/why-is-my-ternary-expression-not-working -3 Why is my ternary expression not working? Flubba 2008-08-05T00:56:43Z 2009-01-24T03:19:15Z <p>I am trying to set a flag to show or hide a page element, but it always displays even when the expression is false. </p> <pre><code>$canMerge = ($condition1 &amp;&amp; $condition2) ? 'true' : 'false';<br>...<br>&lt;?php if ($canMerge) { ?&gt;Stuff&lt;?php } ?&gt;<br></code></pre> <p>What's up?</p> http://stackoverflow.com/questions/313139/how-do-i-shrink-the-size-of-a-tag/313221#313221 0 Answer by Flubba for How do I shrink the size of a tag Flubba 2008-11-24T01:17:11Z 2008-11-24T01:17:11Z <p>Also, if you're applying that to an inline element like an A or a SPAN, you'll find that the vertical values don't apply. You don't give enough context for us to comment sensibly - try linking to a page showing the problem and we won't have to guess solutions for you!</p> http://stackoverflow.com/questions/313188/empty-post-array-in-php-5-2-6-iis-cgi/313214#313214 2 Answer by Flubba for Empty $_POST array in PHP 5.2.6 / IIS CGI Flubba 2008-11-24T01:12:20Z 2008-11-24T01:12:20Z <p>Well, if it's any consolation your code works as intended in PHP5 with Apache.</p> <p>A quick Google revealed a couple other people with the same problem but no definitive solution - closest thing was <a href="http://bytes.com/archives/php/389664-_post-problem-php5-iis" rel="nofollow">this</a>...</p> <blockquote> <p>Check your IIS configuration and see what verbs are permitted for PHP. My guess is that POST isn't included. You should have GET and POST enabled at a minimum, or just make your life easy and allow all verbs.</p> </blockquote> <p>Make sure you update your question if you find a solution; I'm sure other people will benefit.</p> http://stackoverflow.com/questions/260664/storing-passwords-in-reversible-form/313187#313187 0 Answer by Flubba for Storing Passwords in reversible form Flubba 2008-11-24T00:46:19Z 2008-11-24T00:46:19Z <p>Just to follow up on the suggestion to use MySQL encode and decode functions, the manual is <a href="http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html#function_encode" rel="nofollow">vague</a> on just how these work: </p> <blockquote> <p>The strength of the encryption is based on how good the random generator is. It should suffice for short strings.</p> </blockquote> <p>But what I'd suggest is that you can instead use the built-in MySQL 5.0 <a href="http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html#function_aes-encrypt" rel="nofollow">AES functions</a>; <code>AES_ENCRYPT()</code> and <code>AES_DECRYPT()</code></p> <pre><code>SELECT AES_ENCRYPT('secret squirrel', '12345678') AS encoded =&gt; ØA;J×ÍfOU»] É8 SELECT AES_DECRYPT('ØA;J×ÍfOU»] É8', '12345678') AS decoded =&gt; secret squirrel </code></pre> <p>These use 128-bit AES which should be strong enough for most purposes. As others commented, using a salt value and a key with a high entropy is a good practice.</p> http://stackoverflow.com/questions/48/multiple-submit-buttons-on-a-form/411#411 3 Answer by Flubba for Multiple submit buttons on a form Flubba 2008-08-02T11:24:57Z 2008-11-03T18:10:21Z <p>If the fact that the first button is used by default is consistent across browsers, why not put them the right way round in the source code, then use CSS to switch their apparent positions? float them left and right to switch them around visually, for example.</p> http://stackoverflow.com/questions/48/multiple-submit-buttons-on-a-form/674#674 0 Answer by Flubba for Multiple submit buttons on a form Flubba 2008-08-03T12:57:20Z 2008-11-03T18:10:21Z <p>@huseyint - great answer but you didn't read the question properly! :) The issue is not to do with handling the different buttons, but which action gets activated by pressing return in the form...</p> http://stackoverflow.com/questions/842/best-way-to-implement-unit-testing-in-php/1736#1736 5 Answer by Flubba for Best way to implement unit testing in PHP Flubba 2008-08-05T00:21:38Z 2008-11-03T18:10:11Z <p>I think you should check out <a href="http://simpletest.org/" rel="nofollow">Simpletest</a> - we found it much easier to use and get started with than phpUnit.</p> <p>No, it won't increase productivity; it will improve your code though, and overall should make everything better. </p> <p>We've started using unit testing at work, but it works best when tests are written at the same time as your code. It's slow work retrofitting it to existing code, but we are trying to write tests for all new stuff.</p> <p>There is a book called <a href="http://www.jansch.nl/2007/12/27/book-announcement-enterprise-php-development/" rel="nofollow">Enterprise PHP</a> by Ivo Jansch which has just been published and covers unit testing as well as other best practices; I saw Ivo's keynote speech on the same topic at PHP London this year and it should be an excellent book for anyone who wishes to work more effectively with PHP.</p> http://stackoverflow.com/questions/2648/what-php-framework-would-you-choose-for-a-new-application-and-why/2659#2659 30 Answer by Flubba for What PHP framework would you choose for a new application and why? Flubba 2008-08-05T18:29:42Z 2008-10-20T07:53:09Z <p>Well, we've been using Zend Framework on a private project for a few months, and it's been pretty painful. We also use it at work, and it's pretty painful there too. It's one to consider if you're starting on a project, but it's not stable and probably won't be for some time to come. I think Zend have managed it pretty badly; at one crucial point the docs were version 1.5 but the current version was still 1.0 and I wasted a lot of time trying to get it to do what it said it did in the docs. </p> <p>The MVC is implemented in an OK fashion, but the absence of good tutorials was a terrible drawback when we were learning it back in Spring 2008. I believe most of any application should be in the model, and in ZF at the time this was given no coverage whatsoever.</p> <p>I think it will need another year to be stable enough to live with, and I think it will probably become something of a standard once they've gotten it a bit more mature. Although it's from Zend, it's very much an ad-hoc community project with not enough centralised control, as far as I can see. And for the last year or so I'd say it's suffered as a result. I really wish we hadn't used it on the private project. At work, it's more of a long term thing and so it will probably pay off eventually.</p> <p>The good thing about ZF is that you don't need to use the whole thing - for instance, you can start using the RSS functions or any other module with an existing application perfectly happily. You can use the MVC stuff or not. That flexibility is very valuable. The question is again whether the quality of the individual bits is there yet; my colleague really struggled with their ACL architecture, for example, but the RSS stuff is fine.</p> <p>I've been pretty impressed with what I've seen of CakePHP, but haven't used it. I would probably give it a go on a new project; it's based on similar principles to Rails and has some nice design principles.</p> http://stackoverflow.com/questions/7674/best-practices-for-building-flash-video-player 4 Best practices for building Flash video player Flubba 2008-08-11T11:17:36Z 2008-10-16T12:43:18Z <p>We have a custom-built Flash-based video player that I maintain, and it needs to support preroll ads and ideally both progressive video playback and streaming depending on a server switch.</p> <p>I've been working with the flvPlayback component but am finding myself a little out of my depth. Are there any good tutorials or resources for understanding the difference between netstream and flvPlayback? Or is one part of the other? Have googled without success.</p> <p>For the preroll ads we'll probably use DART In-Stream, which is part of the reason I feel I'm losing a grip on the best way to structure this thing.</p> <p>Any help with best practices or links most appreciated - ta!</p> http://stackoverflow.com/questions/195973/validating-web-pages/195988#195988 0 Answer by Flubba for Validating Web Pages Flubba 2008-10-12T20:22:24Z 2008-10-12T20:22:24Z <p>Well, this is almost holy war territory. If you are having trouble with CSS, making sure your HTML and CSS validate is a really good diagnostic step. It can sometimes cause accessibility problems if your HTML is very badly munged. Otherwise, there aren't really any practical reasons to worry about it.</p> <p>Taking care in your work and pride in your craftsmanship, though, that's something else. If your pages validate, it's like a little gold star and you get a warm fuzzy feeling for a few seconds. It's a best-practice. </p> <p>If you like doing things the absolutely right way, then sure, care about it.</p> http://stackoverflow.com/questions/195684/can-requireonce-be-used-with-symbolic-links 0 Can require_once be used with symbolic links? Flubba 2008-10-12T16:49:29Z 2008-10-12T19:47:42Z <p>On a CentOS LAMP box, trying to get require_once to work inside a script in PHP5. If the file to be included is not a in symlinked directory, it works fine, but if the file to be required is in a directory found via a symbolic link, it fails to find it.</p> <p>Is this a limitation of require_once and symbolic links?</p> <p>EDIT - Thanks for the input, all. I think it's most likely a permissions thing after reading those</p> http://stackoverflow.com/questions/146354/setting-php-variables-in-httpd-conf 0 Setting PHP variables in httpd.conf? Flubba 2008-09-28T17:56:33Z 2008-09-28T20:33:13Z <p>Hi, </p> <p>I'd like to automatically change my database connection settings on a per-vhost basis, so that I don't have to edit any PHP code as it moves from staging to live and yet access different databases. This is on a single dedicated server.</p> <p>So I was wondering, can I set a PHP variable or constant in httpd.conf as part of the vhost definition that the site can then use to point itself to a testing database automatically?</p> <pre><code>$database = 'live'; if (some staging environment variable is true) { $database = 'testing'; // and not live } </code></pre> <p>If this isn't possible, I guess in this case I can safely examine the hostname I'm running on to tell, but I'd like something a little less fragile</p> <p>Hope this makes sense</p> <p>many thanks</p> <p>Ian</p> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/34143#34143 79 Answer by Flubba for Computer Language puns and jokes Flubba 2008-08-29T07:54:26Z 2008-09-21T19:50:53Z <p><img src="http://www.osnews.com/images/comics/wtfm.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/108503/mysql-advisable-number-of-rows/109320#109320 0 Answer by Flubba for MySQL: Advisable number of rows Flubba 2008-09-20T20:46:04Z 2008-09-20T20:46:04Z <p>Actually this is a good question for performance. Have you read <a href="http://www.jpipes.com/" rel="nofollow">Jay Pipes</a>? There isn't a specific number of rows but there is a specific page size for reads and there can be good reasons for vertical partitioning. </p> <p>Check out his kung fu presentation and have a look through his posts. I'm sure you'll find that he's written some useful advice on this.</p> http://stackoverflow.com/questions/1834070/any-tutorials-on-how-to-use-phpdocumentor/1839426#1839426 Comment by Flubba on Any tutorials on how to use phpDocumentor? Flubba 2009-12-03T14:31:19Z 2009-12-03T14:31:19Z Thanks for that - added some explanation to my post above http://stackoverflow.com/questions/1834070/any-tutorials-on-how-to-use-phpdocumentor/1834187#1834187 Comment by Flubba on Any tutorials on how to use phpDocumentor? Flubba 2009-12-03T14:30:06Z 2009-12-03T14:30:06Z Thanks for that; yes I found that using Google too :) But it is quite a good one. http://stackoverflow.com/questions/1836889/select-duplicates-with-php-mysql-for-merging-process/1838554#1838554 Comment by Flubba on Select duplicates with PHP & MySql for merging process Flubba 2009-12-03T09:21:24Z 2009-12-03T09:21:24Z @Romain: &quot;ordering of columns becomes important for the code&quot;... Really? Only if you write your code to rely on the order, surely. Whether you get it as an associative array or as an object, the order is neither here nor there. Select * is bad only because it potentially retrieves unneeded data, IMO http://stackoverflow.com/questions/1838475/php-associative-array-strucuture/1838518#1838518 Comment by Flubba on PHP Associative Array Strucuture Flubba 2009-12-03T08:43:26Z 2009-12-03T08:43:26Z Sorry mate, but you're completely wrong. We don't know what the values of the listed elements of the $money array are, and what you say is only true if those values are themselves arrays - there's nothing to suggest that. And your second example is exactly what his original code was. http://stackoverflow.com/questions/1834070/any-tutorials-on-how-to-use-phpdocumentor/1834187#1834187 Comment by Flubba on Any tutorials on how to use phpDocumentor? Flubba 2009-12-03T08:28:34Z 2009-12-03T08:28:34Z That's really extraordinarily unhelpful - if you read the question I asked, that's the same one I linked to. The point is that the instructions there don't work for me and I asked for OTHER tutorials. http://stackoverflow.com/questions/1834043/problem-with-multiple-actions-onclick Comment by Flubba on Problem with multiple actions onclick Flubba 2009-12-02T16:30:56Z 2009-12-02T16:30:56Z Maybe - the code example you have there couldn't possibly work - presumably you typed that in as a rough example? I suggest you edit your question to include a proper minimal test case. If you do that I am sure someone will be able to help you properly. http://stackoverflow.com/questions/164/embedding-windows-media-player-for-all-browsers/407#407 Comment by Flubba on Embedding Windows Media Player for all Browsers Flubba 2009-12-01T13:43:24Z 2009-12-01T13:43:24Z It's an alternative approach - what's naive about suggesting alternatives? http://stackoverflow.com/questions/544474/can-you-help-me-understand-this-common-rest-mistakes-sessions-are-irrelevant/545778#545778 Comment by Flubba on Can you help me understand this? "Common REST Mistakes: Sessions are irrelevant" Flubba 2009-11-13T15:43:31Z 2009-11-13T15:43:31Z That was a good explanation, Vartec http://stackoverflow.com/questions/1174571/mysql-join-condition Comment by Flubba on MySQL Join Condition Flubba 2009-07-23T22:24:14Z 2009-07-23T22:24:14Z I had a look at this but it's too confusing - why have you got the name in the marks table as well? Why is the mark in the students table? It looks really badly normalised, but this may be just the result of your obfuscating the original names I guess. But it's too abstract to help you with, sorry. http://stackoverflow.com/questions/1173583/php-split-string-using-regex/1173665#1173665 Comment by Flubba on php split string using regex Flubba 2009-07-23T22:17:11Z 2009-07-23T22:17:11Z If you're going to go that far, why not go a little further and make it a well-formed XML file, then use SimpleXML to read it into an object. You just need an outer containing element and an XML prolog by the look of things. http://stackoverflow.com/questions/1173558/is-it-possible-to-test-for-scripting-possibilities-in-the-head-of-the-document/1173574#1173574 Comment by Flubba on Is it possible to test for scripting possibilities in the head of the document? Flubba 2009-07-23T18:20:40Z 2009-07-23T18:20:40Z Noscript is cross browser http://stackoverflow.com/questions/1170170/should-i-let-visitors-to-my-site-change-the-width-of-pages-from-fixed-to-a-fluid Comment by Flubba on Should I let visitors to my site change the width of pages from fixed to a fluid? Flubba 2009-07-23T12:56:33Z 2009-07-23T12:56:33Z This is not a good question for stackoverflow as there is no canonical right answer and it's verging on religious war territory http://stackoverflow.com/questions/1171453/unbelievable-php-script-wont-echo-out-string/1171478#1171478 Comment by Flubba on Unbelievable PHP script won't echo out string Flubba 2009-07-23T12:51:32Z 2009-07-23T12:51:32Z The post opened with the fact that another script works as expected - that is not a particularly helpful suggestion, given the fact. http://stackoverflow.com/questions/1158579/modification-of-date-format-within-a-text-file/1158773#1158773 Comment by Flubba on Modification of date format within a text file Flubba 2009-07-22T00:11:02Z 2009-07-22T00:11:02Z awk is the best. Take any line-based input with fields separated by whitespace and pipe it into awk; you can access each field individually just using $0, $1 etc. e.g. cat myapachelog | awk '{print $10}' to display just the bytes transferred in a single col or cat myapachelog | awk '{total += $10} END {print total}' to output the total bytes served from the logfile http://stackoverflow.com/questions/1162306/creating-elements-in-javascript/1162319#1162319 Comment by Flubba on Creating elements in JavaScript Flubba 2009-07-22T00:04:45Z 2009-07-22T00:04:45Z +1 for it being a complete pain in the ass to create even mildly complex HTML fragments with the DOM. Generate the HTML serverside and slap it in with innerHTML