User Kris - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T06:38:40Z http://stackoverflow.com/feeds/user/18565 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1755504/c-how-to-programatically-get-version-number-of-a-dll/1755514#1755514 3 Answer by Kris for C#, how to programatically get version number of a DLL? Kris 2009-11-18T11:57:42Z 2009-11-18T11:57:42Z <pre><code>Assembly assembly = Assembly.LoadFrom("MyAssembly.dll"); Version ver = assembly.GetName().Version; </code></pre> http://stackoverflow.com/questions/1755298/php-open-txt-file-add-1-to-contents-when-link-clicked/1755308#1755308 3 Answer by Kris for PHP - Open TXT file, add +1 to contents when link clicked Kris 2009-11-18T11:15:07Z 2009-11-18T11:41:09Z <p>If you forego any validity checking you could do it with something as simple as:</p> <pre><code>file_put_contents($theCounterFile, file_get_contents($theCounterFile)+1); </code></pre> <p><strong>Addition:</strong></p> <p>There's talk about concurrency in this thread and it should be noted that it is a good idea to use a database and transactions to deal with concurrency, I'd highly recommend against writing a bunch of plumbing code to do this in a file.</p> <p>If you've ever had, or think you might ever have two requests for the resource in the same second you should look into <a href="http://php.net/PDO" rel="nofollow">PDO</a> with <a href="http://dev.mysql.com" rel="nofollow">mysql</a>, or PDO with <a href="http://www.sqlite.org" rel="nofollow">SQLite</a> instead of a file, use transactions (and <a href="http://dev.mysql.com/doc/refman/5.0/en/innodb.html" rel="nofollow">InnoDB</a> or better if you're going for mysql).</p> <p>But really, even if you get two requests in the same microsecond (highly unlikely), chances of locking the file are slim as it will not be kept open and the two requests will probably not be handled parallel enough to lock anyway. Reality check: how many hits on the same resource do you get on average in the same minute?...</p> http://stackoverflow.com/questions/1709533/php-how-do-i-remove-an-element-from-a-multidemision-array/1709644#1709644 2 Answer by Kris for PHP: How do i remove an element from a multidemision array? Kris 2009-11-10T17:20:23Z 2009-11-10T17:20:23Z <p>You're not enumerating over indices, but values there, to unset an array index, you have to unset it by index, not by value. </p> <p>Also, If your array index is actually the productID you can eliminate the loop altogether:</p> <pre><code>public function RemoveItem($productID) { if (isset($this-&gt;shopcart[$productID])) { unset($this-&gt;shopcart[$productID]); } } </code></pre> <p>Your example doesn't show how you are adding items to <code>$this-&gt;shopcart</code>, but this may or may not be an option for you depending on the needs of your project. (i.e. not if you need to have seperate instances of the same productid in the cart).</p> http://stackoverflow.com/questions/1709379/replace-spaces-in-invalid-xml-file/1709565#1709565 0 Answer by Kris for Replace Spaces in InValid XML File Kris 2009-11-10T17:08:08Z 2009-11-10T17:08:08Z <p>If you never have any attributes inside the tags you could:</p> <ol> <li>figure out all the element names</li> <li>determine their malformed open and close tag equivalent.</li> <li>replace all malformed tags with their wellformed equivalent in the entire document</li> </ol> <p>But if my employer gave me that stuff and said it was XML, I'd know it was time to switch jobs.</p> http://stackoverflow.com/questions/1709190/my-view-in-mysql-its-not-working/1709353#1709353 0 Answer by Kris for My VIEW in MySQL its not working. Kris 2009-11-10T16:40:51Z 2009-11-10T16:40:51Z <p>There's no <code>ordreid</code> (or <code>orderid</code>) column in <code>invoice</code> to join against. The script is still very much incomplete by the way, no function <code>fc_return_fee</code> or test data, so testability is very limited.</p> <p>What is the error message mysql is giving you?</p> http://stackoverflow.com/questions/1022579/whats-so-great-about-textmate/1701765#1701765 0 Answer by Kris for What's so great about TextMate? Kris 2009-11-09T15:31:35Z 2009-11-10T16:07:09Z <p>Textmate basically has all the power of &lt;insert your favorite unix editor here&gt; with a nice Mac OS X UI wrapped around it and a great plugin system using bundles, of which hundreds are available and most are either good or awesome.</p> http://stackoverflow.com/questions/1702972/how-do-i-check-if-a-node-has-no-siblings/1703010#1703010 2 Answer by Kris for How do I check if a node has no siblings? Kris 2009-11-09T18:56:12Z 2009-11-09T18:56:12Z <p>you could count the number of childnodes in the items parent after filtering out the whitespace nodes. (which you probably don't want, but are also probably messing up your expected result).</p> <p>I can't put it in actual java real quick because i'm not familiar enough with it, but it should be pretty straightforward.</p> http://stackoverflow.com/questions/1702899/whats-a-duo-file/1702973#1702973 0 Answer by Kris for What's a .duo file? Kris 2009-11-09T18:50:53Z 2009-11-09T18:50:53Z <p>Seems to be <a href="http://www.file-extensions.org/duo-file-extension" rel="nofollow">database related</a></p> http://stackoverflow.com/questions/1702739/site-slows-for-individual-users-but-they-can-switch-browsers/1702958#1702958 1 Answer by Kris for Site slows for individual users, but they can switch browsers? Kris 2009-11-09T18:47:56Z 2009-11-09T18:47:56Z <p>Sounds pretty much like you have some sort of session locking issue. You state that even removing cookies doesn't help, which makes session locks seem less plausible, but I don't have any details on your implementation so it's still possible.</p> <p>I have two questions i'd need answered to gain some insight into the problem.</p> <ol> <li><p>Do you have a session open while streaming content <em>and</em> attempting to read from or write to the session on a different request?</p></li> <li><p>Have you've implemented your own sessions?</p></li> </ol> <p>If you're answering yes or maybe to question 1, that's probably the root of your problem then.</p> <p>If you're answering yes to question two, does the problem persist if you switch session management to standard php? You could have a bug in your session handling.</p> http://stackoverflow.com/questions/1702693/how-can-i-send-all-php-errors-run-on-one-page-to-an-email/1702736#1702736 3 Answer by Kris for How can I send all php errors run on one page to an email? Kris 2009-11-09T18:12:00Z 2009-11-09T18:25:23Z <p>you'll need to setup an <a href="http://php.net/set%5Ferror%5Fhandler" rel="nofollow">error handler</a> and <a href="http://php.net/register%5Fshutdown%5Ffunction" rel="nofollow">register a shutdown function</a> to do the mailing. in a very oversimplified example that could look something like this:</p> <pre><code>&lt;?php $__errors = array(); function my_error_handler($code, $message, $file, $line) { global $__errors; $__errors[] = sprintf('"%s" (%s line %s)', $message, $file, $line); } set_error_handler( 'my_error_handler', E_ALL ); function send_rror_log() { global $__errors; if ( count( $__errors ) &gt; 0 ) { foreach ( $__errors as $error ) { $body . $error . "\n"; } mail( 'to@example.com', 'error log', $body ); } } register_shutdown_function( 'send_error_log' ); ?&gt; </code></pre> http://stackoverflow.com/questions/1702762/how-to-create-an-empty-file-in-the-command-line/1702777#1702777 0 Answer by Kris for How to create an empty file in the command line? Kris 2009-11-09T18:20:13Z 2009-11-09T18:20:13Z <pre><code>echo "" &gt; filename </code></pre> <p>I believe this works on windows/dos, but my last hands-on experience with either is quite a while ago. I do know for a fact that it works on basically any posix compliant OS.</p> http://stackoverflow.com/questions/1697643/php5-what-is-the-cost-of-rtti-get-class-name-and-etc-in-php5/1701694#1701694 2 Answer by Kris for PHP5 - What is the cost of RTTI (get class' name and etc.) in PHP5? Kris 2009-11-09T15:20:36Z 2009-11-09T15:20:36Z <p>In general, if you are using PHP, performance should not be your biggest worry, write good looking code first (ie. readable and maintainable, self documenting etc.) then profile and optimize as needed. If you begin by worrying about speed, PHP is probably not the way to go.</p> <p>But to answer your question... get_class has pretty decent performance, i think it's pretty well optimized inside the zend engine. trying to call a non-existing function and dealing with the error is <strong>much</strong> more expensive. (it is a fatal error to call a non existent function, you do not get to catch it unless you write a bunch of glue code in your base object)</p> <p>Here's a bit of benchmarking to show some of the different methods of determining the ability to run a method.</p> <p>benchmark.php:</p> <pre><code>&lt;?php class MyClass { public function Hello() { return 'Hello, World!'; } } function test_get_class( $instance ) { $t = get_class( $instance ); } function test_is_callable( $instance ) { $t = is_callable( $instance, 'Hello' ); } function test_method_exists( $instance ) { $t = method_exists( $instance, 'Hello' ); } function test_just_call( $instance ) { $result = $instance-&gt;Hello(); } function benchmark($iterations, $function, $args=null) { $start = microtime(true); for( $i = 0; $i &lt; $iterations; $i ++ ) { call_user_func_Array( $function, $args ); } return microtime(true)-$start; } $instance = new MyClass(); printf( "get_class: %s\n", number_format(benchmark( 100000, 'test_get_class', array( $instance ) ), 5) ); printf( "is_callable: %s\n", number_format(benchmark( 100000, 'test_is_callable', array( $instance ) ), 5) ); printf( "method_exists: %s\n", number_format(benchmark( 100000, 'test_method_exists', array( $instance ) ), 5) ); printf( "just_call: %s\n", number_format(benchmark( 100000, 'test_just_call', array( $instance ) ), 5) ); ?&gt; </code></pre> <p>results:</p> <pre><code>get_class: 0.78946 is_callable: 0.87505 method_exists: 0.83352 just_call: 0.85176 </code></pre> http://stackoverflow.com/questions/1701440/averaging-a-total-in-mysql/1701463#1701463 7 Answer by Kris for Averaging a total in mySQL Kris 2009-11-09T14:47:32Z 2009-11-09T14:47:32Z <p>Total per person:</p> <pre><code>SELECT person_id, SUM(miles) FROM table GROUP BY person_id </code></pre> <p>Average</p> <pre><code>SELECT SUM(miles) / COUNT(DISTINCT person_id) FROM table </code></pre> <p>These should work</p> http://stackoverflow.com/questions/1699796/best-way-to-do-multiple-constructors-in-php/1701337#1701337 4 Answer by Kris for Best way to do multiple constructors in PHP Kris 2009-11-09T14:33:09Z 2009-11-09T14:33:09Z <p>I'd probably do something like this:</p> <pre><code>&lt;?php class Student { public function __construct() { // allocate your stuff } public static function withID( $id ) { $instance = new self(); $instance-&gt;loadByID( $id ); return $instance; } public static function withRow( array $row ) { $instance = new self(); $instance-&gt;fill( $row ); return $instance; } protected function loadByID( $id ) { // do query $row = my_awesome_db_access_stuff( $id ); $this-&gt;fill( $row ); } protected function fill( array $row ) { // fill all properties from array } } ?&gt; </code></pre> <p>Then if i want a Student where i know the ID:</p> <pre><code>$student = Student::withID( $id ); </code></pre> <p>Or if i have an array of the db row:</p> <pre><code>$student = Student::withRow( $row ); </code></pre> <p>Technically you're not building multiple constructors, just static helper methods, but you get to avoid a lot of spaghetti code in the constructor this way.</p> http://stackoverflow.com/questions/1691229/how-does-im-remember-password-securely/1691413#1691413 -1 Answer by Kris for how does IM remember password securely? Kris 2009-11-07T00:24:45Z 2009-11-08T00:16:35Z <p>just hash it the same way in your client app as you do on the server, you can eliminate the need to ever send the actual password that way.</p> <p>obviously you'll have to hash your hash again when sending, otherwise the hash becomes tha password, but you can do the same on the server. Use some random token inside the authentication message.</p> <p><strong>Additions</strong> It's really not as hard to grok as the comments make it seem:</p> <p>If you take the original password (plaintext) concatenate it with something like a MAC address, or email address, or username, or whatever you can reproduce on the server, you are salting the password and storing a relatively secure hash. </p> <p>Upon authentication you do not just send this hash because that would defeat the purpose of the hashing process entirely, you randomly generate a nonce and concatenate that with the first hash before hashing again. then on the server, you get the nonce and the new hash, which you use to validate your server side hash, hence validating the originally entered plaintext password, without ever storing or transfering it.</p> http://stackoverflow.com/questions/1691390/php-mysqlifetchfield-data-type/1691403#1691403 0 Answer by Kris for PHP mysqli_fetch_field data type Kris 2009-11-07T00:22:09Z 2009-11-07T00:22:09Z <p>I think that'll only give you some flags; nullable or not etc.</p> <p>You might be better off querying INFORMATION_SCHEMA.COLUMNS to get that sort of details.</p> http://stackoverflow.com/questions/1691361/whats-a-good-rule-of-thumb-for-max-dropdown-list-options/1691383#1691383 0 Answer by Kris for what's a good rule of thumb for max dropdown list options Kris 2009-11-07T00:16:55Z 2009-11-07T00:16:55Z <p>Anything over 10 items is probably "a lot" but not immediately too much, that all depends on the context of your application.</p> <p>As for the second part of your question, you might have some success with the drill-down approach, where you have multiple methods of drilling down to a final choice, perhaps you can define groups in one dropdown and elements in the next, filling the second dropdown based on the coice made in the first.</p> <p>Search can be a big help too, especially if done asynchronously (think AJAX) and the dropdown can be changed to a combobox.</p> http://stackoverflow.com/questions/1687279/can-we-pass-parameter-to-a-view-in-sql/1687533#1687533 0 Answer by Kris for can we pass parameter to a view in sql? Kris 2009-11-06T13:16:02Z 2009-11-06T13:16:02Z <p>A view is nothing more than a predifined 'SELECT' statement. So the only real answer would be: No, you cannot.</p> <p>I think what you really want to do is create a stored procedure, where in principle you can use any valid SQL to do whatever you want, including accept parameters and select data.</p> <p>It seems likely that you really only need to add a where clause when you select from your view though, but you didn't really provide enough details to be sure.</p> http://stackoverflow.com/questions/1683673/there-is-some-way-to-do-this-string-extraction-faster/1684772#1684772 0 Answer by Kris for There is some way to do this string extraction faster? Kris 2009-11-06T01:09:31Z 2009-11-06T01:09:31Z <pre><code>&lt;?php $iterations = 100000; $fullhost = 'subdomain.domain.tld'; $start = microtime(true); for($i = 0; $i &lt; $iterations; $i++) { $vhost = substr($fullhost, 0, strpos($fullhost, '.')); } $total = microtime(true) - $start; printf( 'extracted %s from %s %d times in %s seconds', $vhost, $fullhost, $iterations, number_format($total,5)); ?&gt; </code></pre> <p>extracted subdomain from subdomain.domain.tld 100000 times in 0.44695 seconds</p> <p>But that was while encoding video, so it will likely be faster under better circumstances.</p> http://stackoverflow.com/questions/1683843/is-sql-injection-a-risk-today/1684679#1684679 1 Answer by Kris for Is SQL injection a risk today? Kris 2009-11-06T00:45:16Z 2009-11-06T00:45:16Z <p>As I've mentioned several times on stackoverflow before, I am a strong supporter of PDO, just stop using the old fashioned mysql, do yourself <strong>and your clients</strong> a big favor and learn PDO (it's really easy) and take advantage of prepared statements and bound parameters. Even if you do not need prepared statements performance wise, you still get the security benefits. </p> <p>Also, I will recommend crashing your entire app in the clients face if magic quotes is set to on. It's just a drain on resources designed to protect the dumb and annoy the smart. (it uses more cpu than escaping manually, because it encodes everything, even when you don't need it) </p> http://stackoverflow.com/questions/1684593/what-is-a-resonable-maximum-db-rows-for-built-in-gridview-paging/1684610#1684610 1 Answer by Kris for What is a resonable maximum DB rows for built-in GridView paging? Kris 2009-11-06T00:24:34Z 2009-11-06T00:24:34Z <p>Can you profile with test data? If so I highly recommend just trying increasing amounts of rows until it becomes too slow for you. By doing so you will probably gain some insight you cannot get any other way than trying yourself.</p> <p>Having said that, I personally never just bind from the database, I always have a glue object that manages the datasource and gets exactly what is needed for the page. It might very well not be worth spending the time on that for you though.</p> http://stackoverflow.com/questions/268284/when-writing-code-do-you-wrap-text-or-not/268294#268294 4 Answer by Kris for When writing code do you wrap text or not? Kris 2008-11-06T11:02:06Z 2009-11-02T09:33:55Z <p>I never let the IDE do that for me because it's annoying. If one statement becomes too long or complicated to fit on one line of reasonable length, I'll wrap it myself thank you very much. This happens with largish format strings etc.</p> http://stackoverflow.com/questions/927474/any-netbeans-features-that-will-make-my-day 5 Any netbeans features that will make my day? Kris 2009-05-29T18:31:20Z 2009-10-22T14:52:32Z <p>Hi all, </p> <p>I've recently gotten quite fond of <a href="http://www.netbeans.org/" rel="nofollow">netbeans</a> for my php work because of the XDebug integration. It has made me all but forget about <a href="http://www.macromates.com" rel="nofollow">textmate</a> (which imho still beats netbeans for the little things) </p> <p>What do you think is the one awesome netbeans feature I should know about, and more importantly why and how do I use it?</p> <p>I'm asking this to optimize my skills in the use of the IDE and based on the idea that what works well for others might just work for me (and hopefully others).</p> http://stackoverflow.com/questions/1586225/how-to-delete-multiple-rows-in-sql-server/1586238#1586238 1 Answer by Kris for How to delete multiple rows in SQL Server Kris 2009-10-18T22:36:22Z 2009-10-18T22:36:22Z <p>ON DELETE CASCADE on the foreign key?</p> http://stackoverflow.com/questions/1586094/convert-bitmap-files-into-jpeg-using-the-gd-library-in-php/1586221#1586221 0 Answer by Kris for Convert Bitmap Files into JPEG using the GD library in PHP Kris 2009-10-18T22:32:37Z 2009-10-18T22:32:37Z <p>Off the top of my head:</p> <pre><code>function convert_to_jpeg( $input_path, $output_path ) { $image = imagecreatefromstring(file_get_contents($input_path)); imagejpeg($image, $output_path); imagedestroy($image); } </code></pre> <p>That'll take any format GD can handle as input, and output a jpeg file. I don't know what version of GD you folks are using, but mine handles .bmp perfectly and so did the version we used at the previous company I worked for. (on Mac OS X 10.6 and CentOS 5 respectively)</p> <p><b>edit</b>: forgot imagedestroy! ouch!</p> http://stackoverflow.com/questions/1569559/c-vs-java-for-game-programming/1569577#1569577 1 Answer by Kris for C vs. Java for game programming Kris 2009-10-14T23:34:51Z 2009-10-14T23:34:51Z <p>I think it's mostly because c lets developers squeeze every last little bit of performance out of hardware, whereas Java doesn't, it's not low level enough for things like high end 3d video renderers. Basically c lets you squeeze out a couple more frames per second in your next gen shooter.</p> http://stackoverflow.com/questions/927474/any-netbeans-features-that-will-make-my-day/1511400#1511400 1 Answer by Kris for Any netbeans features that will make my day? Kris 2009-10-02T19:36:35Z 2009-10-02T19:36:35Z <p>I've found another great snip of genius i wanted to share:</p> <p>you can do custom code folding (not really related to php, just netbeans)</p> <p>just put this into a code file:</p> <pre><code>// &lt;editor-fold defaultstate="collapsed" desc="getters and setters"&gt; some boring code you don't need to see every time here // &lt;/editor-fold&gt; </code></pre> <p>That'll behave similar to <code>#region</code>s in visual studio or <code>pragma mark</code>s in xcode. but unlike <code>region</code>s, it doesn't screw up the working of your code, it's really just a comment!</p> http://stackoverflow.com/questions/1366313/possible-to-compile-asp-net-to-machine-code/1366327#1366327 1 Answer by Kris for Possible to Compile ASP.NET to Machine Code? Kris 2009-09-02T07:50:03Z 2009-09-02T07:50:03Z <p>While it is actually possible to make a .net independent executable from a .net project postbuild using tools from for example www.xenocode.com, I don't know if that holds true for ASP.NET projects, I also doubt there will be any real performance benefits after the first load of any resource.</p> http://stackoverflow.com/questions/1347955/pdo-and-nested-fetching/1348009#1348009 0 Answer by Kris for PDO and nested fetching Kris 2009-08-28T16:11:05Z 2009-08-28T16:11:05Z <p>Sounds like what you are trying to accomplish is getting related data for the record you're looking at, why not just JOIN them in at the first query? The database will be better at connecting the dots internally than any amount of code can do externally.</p> <p>But to answer your question, I don't see the harm in opening another connection to the same DSN, most likely thing to happen is that you get another instance of the PDO object pointing to the same actual connection. Also, but depending on the amount of data you're expecting you could just fetchAll and loop over a php array.</p> http://stackoverflow.com/questions/873432/netbeans-php-code-completion 4 NetBeans PHP code completion Kris 2009-05-16T22:12:14Z 2009-08-27T02:42:36Z <p>Hi folks,</p> <p>Rrecently I started using <a href="http://download.netbeans.org/netbeans/6.7/beta/" rel="nofollow">NetBeans 6.7 beta</a> for PHP development instead of <a href="http://macromates.com/" rel="nofollow">Textmate</a> and <a href="http://www.bluestatic.org/software/macgdbp/" rel="nofollow">MacGDBp</a>. I am rather amazed with it's feature set and most everything worked out of the box, or was easily configured to my liking.</p> <p>I am having an issue with the code completion features though; they work for build-in functions, <a href="http://nl.php.net/spl" rel="nofollow" title="Standard PHP Library">SPL</a> and some of my code, but not all of my code, specifically, it never works for any methods in my classes, regardless of PHPDoc comments.</p> <p>I can't seem to find any decent questions, let alone answers about this specific subject anywhere. It looks like everybody else who has problems with the code completion just hasn't enabled the auto-popup feature.</p> <p><strong>So the big question is:</strong></p> <p>Is there <em>any way</em> to influence the code completion cache, or something i have to add to my code to make it work? I'd really like to have code completion for the methods I write.</p> <p><strong>PS</strong>: i have tried several older versions of netbeans, they all exhibit the same problem.</p> <p><strong>edit</strong>: I've put a .zip up of my current test project. <a href="http://develop.theredhead.nl/~kris/stackoverflow/develop.theredhead.nl.zip" rel="nofollow">get it here</a>. It's a very young project, think a day and a half.</p> <p><strong>edit2</strong>: Below is a screenshot of what i'm looking at. As you can see, it fails to complete pretty much anything, nor does it see the PHPDoc documentation.</p> <p><img src="http://develop.theredhead.nl/~kris/stackoverflow/netbeans-code-completion-fail-screenshot.png" alt="alt text" /></p> http://stackoverflow.com/questions/1755416/how-can-i-parse-the-following-text-file/1755433#1755433 Comment by Kris on How can I parse the following text file? Kris 2009-11-18T12:04:54Z 2009-11-18T12:04:54Z streets don't have padding whereas persons do. http://stackoverflow.com/questions/1755512/iphone-device-test-issue Comment by Kris on iPhone device test Issue Kris 2009-11-18T12:01:55Z 2009-11-18T12:01:55Z It's iPhone, not I-phone. I know google is pretty good with spelling errors like that these days but it's still a good idea to spell things correctly. http://stackoverflow.com/questions/1755298/php-open-txt-file-add-1-to-contents-when-link-clicked/1755308#1755308 Comment by Kris on PHP - Open TXT file, add +1 to contents when link clicked Kris 2009-11-18T11:41:36Z 2009-11-18T11:41:36Z ouch gumbo, you are absolutely correct! http://stackoverflow.com/questions/1755298/php-open-txt-file-add-1-to-contents-when-link-clicked/1755308#1755308 Comment by Kris on PHP - Open TXT file, add +1 to contents when link clicked Kris 2009-11-18T11:29:14Z 2009-11-18T11:29:14Z yes it will fail, if you need something viable for concurrency use a database, not a text file. http://stackoverflow.com/questions/1755298/php-open-txt-file-add-1-to-contents-when-link-clicked/1755342#1755342 Comment by Kris on PHP - Open TXT file, add +1 to contents when link clicked Kris 2009-11-18T11:28:04Z 2009-11-18T11:28:04Z why on earth would you want to write all that plumbing yourself, just to reqd and write an int? http://stackoverflow.com/questions/1755298/php-open-txt-file-add-1-to-contents-when-link-clicked/1755331#1755331 Comment by Kris on PHP - Open TXT file, add +1 to contents when link clicked Kris 2009-11-18T11:23:58Z 2009-11-18T11:23:58Z SQLite is very obviously a much better idea than using a text file. http://stackoverflow.com/questions/1702739/site-slows-for-individual-users-but-they-can-switch-browsers/1702958#1702958 Comment by Kris on Site slows for individual users, but they can switch browsers? Kris 2009-11-12T05:05:43Z 2009-11-12T05:05:43Z I'm afraid you'll just have to selectively open and close the session, personally i have my own DB based sessions, but just a backend to PHP's $_SESSION, and that'll still lock if you do it wrong. http://stackoverflow.com/questions/1709190/my-view-in-mysql-its-not-working/1709353#1709353 Comment by Kris on My VIEW in MySQL its not working. Kris 2009-11-10T16:50:20Z 2009-11-10T16:50:20Z then you probably need to add some code to the end of your view: GROUP BY shopid, accept_date http://stackoverflow.com/questions/1709190/my-view-in-mysql-its-not-working Comment by Kris on My VIEW in MySQL its not working. Kris 2009-11-10T16:45:45Z 2009-11-10T16:45:45Z @mmoreds, most likely: yes http://stackoverflow.com/questions/1709190/my-view-in-mysql-its-not-working Comment by Kris on My VIEW in MySQL its not working. Kris 2009-11-10T16:29:20Z 2009-11-10T16:29:20Z I don't have any of your base tables to test against, but at first glance it seems like it should work. Maybe you can post a small but complete sql script to recreate the required tables and insert some test data? I'd be happy to take a look. http://stackoverflow.com/questions/1709161/how-do-i-prevent-duplicate-headers-when-dealing-with-threads-in-php Comment by Kris on How do I prevent duplicate headers when dealing with threads in PHP? Kris 2009-11-10T16:19:58Z 2009-11-10T16:19:58Z I can't tell you anything useful without a proper code sample http://stackoverflow.com/questions/1702739/site-slows-for-individual-users-but-they-can-switch-browsers/1702958#1702958 Comment by Kris on Site slows for individual users, but they can switch browsers? Kris 2009-11-10T16:10:10Z 2009-11-10T16:10:10Z It's not just multiple tabs that cause multiple open requests, just loading any two or more resources at the same time, tabs by themselves aren't very likely to do that, unless you're also doing some AJAX. http://stackoverflow.com/questions/1022579/whats-so-great-about-textmate/1701765#1701765 Comment by Kris on What's so great about TextMate? Kris 2009-11-10T16:07:42Z 2009-11-10T16:07:42Z whoops, I never noticed the editor cutting that par, edited accordingly http://stackoverflow.com/questions/1702899/whats-a-duo-file/1702955#1702955 Comment by Kris on What's a .duo file? Kris 2009-11-09T18:51:45Z 2009-11-09T18:51:45Z @Blaenk: you beat me to it. upvote deserved. http://stackoverflow.com/questions/1702762/how-to-create-an-empty-file-in-the-command-line/1702777#1702777 Comment by Kris on How to create an empty file in the command line? Kris 2009-11-09T18:27:08Z 2009-11-09T18:27:08Z maybe you could put &quot;@echo off&quot; on the line before creating the file to circumvent that?