[PHP] Re[2]: How to Execute Multiple SQL Updates Using PHP

2008-11-28 Thread ANR Daemon
requirements. Well, as last resort, there's a transactions exists. Especially for these times where you DO need to insert/update more than one row at once, without even smalest possibility of intervention from other clients. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List

Re[2]: [PHP] fread() behaviour

2008-11-28 Thread ANR Daemon
functions designed especially to work with asyncronous I/O. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[4]: [PHP] It's Sunday, and I'm bored...

2008-11-24 Thread ANR Daemon
your work. Is this the generally held belief or do I need to go back and re-read? Just read further while you keeping confusing moments in mind. At some point, they will become clearer... eventually. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http

Re[2]: [PHP] It's Sunday, and I'm bored...

2008-11-18 Thread ANR Daemon
yes, but I meant without company.. See when we are in a herd, then even if we're all mad, then somehow it seems alright. ;-) We even have professional looking tools to track which version of madness! hehe :) /agree -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing

Re[2]: [PHP] Reg Ex

2008-11-10 Thread ANR Daemon
; preg_match('/(.*)\..*$/', $filename, $match); I should correct you to #^((.+)(\.[^\.]+)?)$# Results will be 1 = Filename 2 = Basename 3 = Extension -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re[2]: [PHP] Reg Ex

2008-11-10 Thread ANR Daemon
var_dump( pathinfo( '.htaccess' )); var_dump( pathinfo( 'htaccess' )); die( ); ? -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] wget --spider and ignore_user_abort(TRUE)

2008-11-10 Thread ANR Daemon
first body byte sent, and since it is HEAD request, Apache shut down the script in case of request completion (HEADers sent). -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: two mysql installations php_mysql.dll extension and libmysql.dll question

2008-11-10 Thread ANR Daemon
PHPIniDir C:/usr/sbin/php-5.2.2-Win32 /IfModule That said, I always know which library i've loaded, and if something weird occur, I know who to blame about that. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re[2]: [PHP] Invalid byte sequence for encoding UTF-8

2008-11-06 Thread ANR Daemon
escaping routine. 2. before sending data to client. Use appropriate encoding routine, such as htmlentites() Don't use add*slashes and any kind of it, including magic_quotes*, unless you surely know what you're doing and why. And please, don't top-post. -- Sincerely Yours, ANR Daemon [EMAIL

[PHP] Re: Printing JPEG

2008-10-30 Thread ANR Daemon
Greetings, Kyle Terry. In reply to Your message dated Thursday, October 23, 2008, 15:32:07, I'm stuck... What is the best way to send a jpg to a printer with PHP? Looks like it is only working with png and bmp... Example? -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General

[PHP] Re[2]: Problem changing file encoding

2008-10-29 Thread ANR Daemon
piece of code. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP Dev Facts

2008-10-16 Thread ANR Daemon
://colorer.sf.net/ (Yeah, it is very much complicated itself, I know...) -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Variable Variables and Super Global Arrays

2008-10-11 Thread ANR Daemon
(return $variable);? and in simple words - is there any way to make the following code work: $varname = \$_SERVER['REMOTE_ADDR']; $varvalue = $$varname; First of all, why you need it to work? Explain real case please. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General

Re[2]: [PHP] Re[2]: The 'at' sign (@) variable prefix

2008-10-10 Thread ANR Daemon
such ability is for good) -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] strtotime problem

2008-10-10 Thread ANR Daemon
specific format (military -MM-DD HH:MM:SS for example) or leave user no chance to enter wrong data. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] Re[2]: The 'at' sign (@) variable prefix

2008-10-09 Thread ANR Daemon
', $a)); // TRUE ? (c) http://php.net/isset -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re[2]: The 'at' sign (@) variable prefix

2008-10-08 Thread ANR Daemon
) || !array_key_exists('from_month', $_POST) || !array_key_exists('from_day', $_POST) ) { throw new Exception('No start date given', 100); } -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re[4]: [PHP] Don't understand what is this $arr['N']['#']

2008-09-27 Thread ANR Daemon
the heat is more bearable. to the bottom ! from the top to read it's easier Because -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re[2]: Unicode problems

2008-09-27 Thread ANR Daemon
mysql_set_charset('encoding'); -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Convert local dates into GMT+1 dates

2008-09-27 Thread ANR Daemon
or what you want to achieve by CHANGING dates in such way. Care to explain? -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] Don't understand what is this $arr['N']['#']

2008-09-25 Thread ANR Daemon
. That, actually, COULD be meaningful index. In some cases. Please don't top post any more. thank you. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] Length of Exception text?

2008-09-09 Thread ANR Daemon
haven't checked if this setting affecting things. And don't worry about my log :) I want it enabled for php-cli.ini only, for development purposes. On live suite, exceptions generally never breaking out to {main} scope. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing

Re[2]: [PHP] Problem of Connection Character Sets and Collations

2008-09-09 Thread ANR Daemon
. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] translations for PHP app

2008-09-09 Thread ANR Daemon
and their attempt to hire foreign company to translate game interface to Russian... That said, it was complete failure. Two times. They simply wasted their money, because all they know about game is the text they were translated. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing

Re[2]: [PHP] Length of Exception text?

2008-09-08 Thread ANR Daemon
'th line. Is there any way to affect this behaviour without recompiling PHP? -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] Sending username/password

2008-09-06 Thread ANR Daemon
://us3.php.net/manual/en/intro.curl.php If you don't have access to Curl, you could also look at the PEAR HTTP_Request class. IIRC this supports HTTP Basic authentication. I'd recommend HTTP_Client in that case. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http

[PHP] Length of Exception text?

2008-09-06 Thread ANR Daemon
far, and backtrace trimmed at 6'th or 7'th line. Is there any way to affect this behaviour without recompiling PHP? -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[4]: [PHP] Sending username/password

2008-09-06 Thread ANR Daemon
behaviour. Including cookies handling. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Path of the class file of an object

2008-09-06 Thread ANR Daemon
your object as string, you could utilize magic of __toString(). -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re[2]: Path of the class file of an object

2008-09-06 Thread ANR Daemon
to it's file in backtrace. I mean, knowing the filename of this or that function absolutely meaningless, unless you're running into problem of some sort. -- Sincerely Yours, ANR Daemon [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net