Re: [PHP] php.net down?

2009-07-16 Thread muzy
Yeah noticed this fact also, try one mirror for example us.php.net or de.php.net There are also a lot of other mirrors ;) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php.net down?

2009-07-16 Thread muzy
Hmm, I thought it was just me, guess not! What are we going to do?! regarding to this question we should use the mirrors provided until this problem is solved ;) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] MySQL Increment/Decrement

2009-12-29 Thread muzy
Hello Ben, I had the same question yesterday (but with SQLite) and there are at least 2 solutions. The first was already mentioned: UPDATE table SET value = value + 1 WHERE foo = bar; The second solution which also works is: UPDATE table SET value = (SELECT value FROM table WHERE foo = bar)

Re: [PHP] int $number = decode_dtmf(string $wavefile)

2010-03-07 Thread muzy
Dear Thilo, please do not email your question more than once to the mailinglist. (you did it 3 or 4 times in a very short period of time) I'm sure everyone read your email and you probably didn't get an answer yet because no one knows it. So just wait ;-) Best wishes, Muzy Thilo K