php-general Digest 6 Sep 2008 08:34:29 -0000 Issue 5666

2008-09-06 Thread php-general-digest-help
php-general Digest 6 Sep 2008 08:34:29 - Issue 5666 Topics (messages 279566 through 279589): Re: Sending POST variables without html code 279566 by: Robert Cummings Re: Google Chrome 279567 by: TG 279589 by: Richard Heyes Sending username/password 279568

php-general Digest 6 Sep 2008 20:54:08 -0000 Issue 5667

2008-09-06 Thread php-general-digest-help
php-general Digest 6 Sep 2008 20:54:08 - Issue 5667 Topics (messages 279590 through 279604): Re: Sending username/password 279590 by: Boyd, Todd M. 279593 by: Richard Heyes 279594 by: ANR Daemon 279596 by: Richard Heyes 279603 by: ANR Daemon

Re: [PHP] Google Chrome

2008-09-06 Thread Richard Heyes
Under the Options and Under the Hood there's an option called: Nope, no effect I'm afraid. -- Richard Heyes HTML5 Graphing for IE7, FF, Opera and Safari: http://www.phpguru.org/RGraph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Sending username/password

2008-09-06 Thread Boyd, Todd M.
-Original Message- From: Jay Moore [mailto:[EMAIL PROTECTED] Sent: Fri 9/5/2008 3:23 PM To: php-general@lists.php.net Subject: Re: [PHP] Sending username/password Wolf wrote: Jay Moore wrote: Greetings list! Is it possible (and if so, how) to send username and password information

[PHP] Evaluating script complexity

2008-09-06 Thread Reese
Good morning everyone, I've usually taken a dive-in/head-first approach to the things I've engaged in, more and more lately I've come to realize that this approach is not always appropriate. I believe this realization can be called experience. So, I have a question I hoped the group could help

[PHP] Problem of Connection Character Sets and Collations

2008-09-06 Thread edwardspl
Dear All, For displaying with unicode Character Sets problem : MySQL : Command line of mysqldump and mysql : Which command line is right ? 1, --default-character-set=utf8 2, --default-character-set=utf-8 phpmyadmin : The Connection Character Sets and Collations setting : Which command line is

Re: [PHP] Sending username/password

2008-09-06 Thread Richard Heyes
Seriously... you should just read the site. It's a library that mimics browser behavior. It will follow Location: headers, push POST variables, etc. Why not just give the page a glance? http://us3.php.net/manual/en/intro.curl.php If you don't have access to Curl, you could also look at the

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

2008-09-06 Thread ANR Daemon
Greetings, Richard Heyes. In reply to Your message dated Saturday, September 6, 2008, 18:53:31, Seriously... you should just read the site. It's a library that mimics browser behavior. It will follow Location: headers, push POST variables, etc. Why not just give the page a glance?

[PHP] Length of Exception text?

2008-09-06 Thread ANR Daemon
Greetings, All. I've been working on some PEAR-based app last week and I ran into problem. While I debugging app, my backtrace always trimmed at some point. First time I though it was my mistake, and switched back to standard Exception class. But nothing changed. If I print everything by hands,

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

2008-09-06 Thread Richard Heyes
I'd recommend HTTP_Client in that case. You could, but that uses HTTP_Request by the looks of it. -- Richard Heyes HTML5 Graphing for IE7, FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Evaluating script complexity

2008-09-06 Thread Robert Cummings
On Sat, 2008-09-06 at 10:05 -0500, Reese wrote: but wanted to see how far a person got with it? If that, is 16 hours (overnight) excessive? I spend 16 hours at a time sometimes just pursuing something I found interesting while eating my lunch... your mileage may vary. INTP for life baby!

Re: [PHP] fsockopen in phpmailer and tls

2008-09-06 Thread Larry Brown
On Fri, 2008-09-05 at 00:58 -0400, Robert Cummings wrote: On Thu, 2008-09-04 at 23:20 -0400, Larry Brown wrote: I am having a ball of a time trying to figure this one out... If anyone has dealt with this before I'd love to get some morsels of wisdom from you... I am trying to connect

Re: [PHP] fsockopen in phpmailer and tls

2008-09-06 Thread Robert Cummings
On Sat, 2008-09-06 at 14:02 -0400, Larry Brown wrote: OK. So I broke down and re-created my mail server due to its age. I am now running the latest sendmail and it is still failing. The message in the sendmail log is ...remoteMachineIP] did not issue MAIL/EXPN/VRFY/ETRN during

Re: [PHP] fsockopen in phpmailer and tls

2008-09-06 Thread Larry Brown
On Sat, 2008-09-06 at 14:06 -0400, Robert Cummings wrote: On Sat, 2008-09-06 at 14:02 -0400, Larry Brown wrote: OK. So I broke down and re-created my mail server due to its age. I am now running the latest sendmail and it is still failing. The message in the sendmail log is

Re: [PHP] fsockopen in phpmailer and tls

2008-09-06 Thread Robert Cummings
On Sat, 2008-09-06 at 14:38 -0400, Larry Brown wrote: On Sat, 2008-09-06 at 14:06 -0400, Robert Cummings wrote: On Sat, 2008-09-06 at 14:02 -0400, Larry Brown wrote: OK. So I broke down and re-created my mail server due to its age. I am now running the latest sendmail and it is

[PHP] Path of the class file of an object

2008-09-06 Thread Ali Çevik
Dear all, I need a procedure or an implementation that gives path of the class file of an object which I pass as a parameter. Example; Assume I have a class file located at C:\htdocs\Foo.class.php In code after I include Foo.class.php; ?php $foo = new Foo(); Echo some_procedure($foo); ? I'm

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

2008-09-06 Thread ANR Daemon
Greetings, Richard Heyes. In reply to Your message dated Saturday, September 6, 2008, 21:26:25, I'd recommend HTTP_Client in that case. You could, but that uses HTTP_Request by the looks of it. You're right, but HTTP_Client offers some additional tools to, as you said, mimicking web browsers

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

2008-09-06 Thread ANR Daemon
Greetings, Ali Çevik. In reply to Your message dated Saturday, September 6, 2008, 23:08:45, I need a procedure or an implementation that gives path of the class file of an object which I pass as a parameter. Example; Assume I have a class file located at C:\htdocs\Foo.class.php In code

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

2008-09-06 Thread Stut
On 6 Sep 2008, at 20:08, Ali Çevik wrote: I need a procedure or an implementation that gives path of the class file of an object which I pass as a parameter. Example; Assume I have a class file located at C:\htdocs\Foo.class.php In code after I include Foo.class.php; ?php $foo = new Foo();

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

2008-09-06 Thread Ali Çevik
Hmm, that should do the trick. Thanks a lot! But still, I wish there were a way of doing that, without altering the class behaviour. Ali Cevik. On Sat, Sep 6, 2008 at 11:58 PM, Stut [EMAIL PROTECTED] wrote: On 6 Sep 2008, at 20:08, Ali Çevik wrote: I need a procedure or an

[PHP] Re: Geometrical library

2008-09-06 Thread Manuel Lemos
Hello, on 09/03/2008 01:54 PM Yannick Warnier said the following: Hi there, I've been looking for a PHP library that would allow me to calculate superpositions of geometrical surfaces defined by polygones (defined themselves by points bound with lines) in 2D (surface of a polygone,

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

2008-09-06 Thread ANR Daemon
Greetings, Ali Çevik. In reply to Your message dated Sunday, September 7, 2008, 1:51:33, I need a procedure or an implementation that gives path of the class file of an object which I pass as a parameter. Example; Assume I have a class file located at C:\htdocs\Foo.class.php In code

Re: [PHP] Re: Geometrical library

2008-09-06 Thread Yannick Warnier
Le samedi 06 septembre 2008 à 23:09 -0300, Manuel Lemos a écrit : Hello, on 09/03/2008 01:54 PM Yannick Warnier said the following: Hi there, I've been looking for a PHP library that would allow me to calculate superpositions of geometrical surfaces defined by polygones (defined