Kris

2,306
Reputation
280 views

Registered User

Name Kris
Member for 1 year
Seen yesterday
Website
Location Netherlands
Age 30

I'm a web developer that has written code for over three quarters of his life.

I code, ergo sum
2d
accepted PHP - Open TXT file, add +1 to contents when link clicked
Nov
18
comment How can I parse the following text file?
streets don't have padding whereas persons do.
Nov
18
comment iPhone device test Issue
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.
Nov
18
revised iPhone device test Issue
i-phone to iPhone
Nov
18
accepted C#, how to programatically get version number of a DLL?
Nov
18
answered C#, how to programatically get version number of a DLL?
Nov
18
comment PHP - Open TXT file, add +1 to contents when link clicked
ouch gumbo, you are absolutely correct!
Nov
18
revised PHP - Open TXT file, add +1 to contents when link clicked
syntax error fixed, thanks to Gumbo
Nov
18
comment PHP - Open TXT file, add +1 to contents when link clicked
yes it will fail, if you need something viable for concurrency use a database, not a text file.
Nov
18
comment PHP - Open TXT file, add +1 to contents when link clicked
why on earth would you want to write all that plumbing yourself, just to reqd and write an int?
Nov
18
comment PHP - Open TXT file, add +1 to contents when link clicked
SQLite is very obviously a much better idea than using a text file.
Nov
18
answered PHP - Open TXT file, add +1 to contents when link clicked
Nov
12
comment Site slows for individual users, but they can switch browsers?
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.
Nov
11
accepted Site slows for individual users, but they can switch browsers?
Nov
10
answered PHP: How do i remove an element from a multidemision array?
Nov
10
answered Replace Spaces in InValid XML File
Nov
10
comment My VIEW in MySQL its not working.
then you probably need to add some code to the end of your view: GROUP BY shopid, accept_date
Nov
10
comment My VIEW in MySQL its not working.
@mmoreds, most likely: yes
Nov
10
answered My VIEW in MySQL its not working.
Nov
10
comment My VIEW in MySQL its not working.
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.
Nov
10
comment How do I prevent duplicate headers when dealing with threads in PHP?
I can't tell you anything useful without a proper code sample
Nov
10
comment Site slows for individual users, but they can switch browsers?
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.
Nov
10
comment What’s so great about TextMate?
whoops, I never noticed the editor cutting that par, edited accordingly
Nov
10
revised What’s so great about TextMate?
fixing a whoopsie with the editor
Nov
10
accepted Best way to do multiple constructors in PHP
Nov
10
accepted PHP5 - What is the cost of RTTI (get class’ name and etc.) in PHP5?
Nov
9
answered How do I check if a node has no siblings?
Nov
9
comment What’s a .duo file?
@Blaenk: you beat me to it. upvote deserved.
Nov
9
answered What’s a .duo file?
Nov
9
answered Site slows for individual users, but they can switch browsers?
Nov
9
comment How to create an empty file in the command line?
maybe you could put "@echo off" on the line before creating the file to circumvent that?
Nov
9
revised How can I send all php errors run on one page to an email?
fixed a booboo
Nov
9
comment How to create an empty file in the command line?
Apperantly, VonC's answer is better than mine, so please upvote that instead.
Nov
9
accepted How can I send all php errors run on one page to an email?
Nov
9
answered How to create an empty file in the command line?
Nov
9
answered How can I send all php errors run on one page to an email?
Nov
9
comment Best way to do multiple constructors in PHP
What i meant is that you're doing different things in the same scope based on outside influence, It's not a bad solution (since it will work), just not the one I would choose.
Nov
9
comment Best way to do multiple constructors in PHP
@gpilotino, overkill because you'd need yet another class, (or method) that would basically just consist of a switch/case decision tree, in the end just doing what I already did in two methods. factories are more useful in situations where you can't easily define the exact constraints of a problem, like creating form elements. but then, that's just my opinion and for the record; I don't claim it to be fact.
Nov
9
comment PHP: Truncate HTML, ignoring tags
i upvoted the accurate, but would downvote for the brute force method
Nov
9
comment Best way to do multiple constructors in PHP
now you have two classes with different names but the same functionality just a different signature on the constructor, sounds like a pretty bad idea to me.
Nov
9
answered What’s so great about TextMate?
Nov
9
comment Averaging a total in mySQL
You're welcome, glad I could be of help.
Nov
9
answered PHP5 - What is the cost of RTTI (get class’ name and etc.) in PHP5?
Nov
9
accepted Averaging a total in mySQL
Nov
9
comment In Which Cases Is Better To Use Regular Expressions?
there should be way more emphasis on the word "not" there, while scanning i almost thought you were advocating the use of regexes for html and xml
Nov
9
comment Best way to do multiple constructors in PHP
i wonder what happens when a new developer is added to a project with lots of code like this
Nov
9
comment Give me an assignment in C
+1 for awesomeness
Nov
9
comment Best way to do multiple constructors in PHP
@JannieT, not really, factories are a bit more complicated than this, And imho probably overkill for this problem
Nov
9
answered Averaging a total in mySQL
Nov
9
comment PHP best practices for user authentication and password security.
definately the way to go, completely nixes the need to store any password, so you won't ever be responsible for losing it either.