php-general Digest 15 Feb 2012 18:10:10 -0000 Issue 7690

2012-02-15 Thread php-general-digest-help
php-general Digest 15 Feb 2012 18:10:10 - Issue 7690 Topics (messages 316612 through 316613): Re: Can php be configured to browse through a proxy? 316612 by: Joan Re: MySQL and PHP weirdness - RESOLVED 316613 by: Richard S. Crawford Administrivia: To subscribe to the

Re: [PHP] Can php be configured to browse through a proxy?

2012-02-15 Thread Joan
Thanks for your answer, it's a pitty that a proxy cannot be specified via php.ini, but anyway. I must say that the information is distributed on many parts of the documentation: .- http://www.php.net/manual/en/context.http.php (for the parameters supported by the http/https context) You get there

Re: [PHP] Re: MySQL and PHP weirdness - RESOLVED

2012-02-15 Thread Richard S. Crawford
This has been resolved. A previous programmer had snuck in a function that would convert the value of the description field to a date value if it contained the word Date. This has been fixed. On Tue, Feb 14, 2012 at 5:44 PM, David Robley robl...@aapt.net.au wrote: Richard S. Crawford wrote:

[PHP] pathinfo or other

2012-02-15 Thread Donovan Brooke
Hello, What is the best way to get the /somedir/ values in the request URI? I tried $t_pathinfo = $_SERVER['PATH_INFO']; but was given an error of undefined index. After looking at the docs, it appears the error derives from something I may have to do in the .ini file. However, is there a

Re: [PHP] pathinfo or other

2012-02-15 Thread Elbert F
SCRIPT_NAME is a server side path, try REQUEST_URI. This includes the query string but it's easy to remove. Elbert http://swiftlet.org On Thu, Feb 16, 2012 at 8:27 AM, Donovan Brooke li...@euca.us wrote: Hello, What is the best way to get the /somedir/ values in the request URI? I tried