[PHP] Deerpark (aka Firefox 1.1 alpha) URI's and PHP

2005-06-04 Thread Chris Drozdowski
Will PHP scripts that work properly with the current version (1.0.4) of Firefox need to be modified for the feature detailed below in Firefox 1.1? See: http://www.mozilla.org/projects/deerpark/new-web-dev-features.html URIs always sent as UTF8 URIs are now always sent to the server as UTF8,

[PHP] The goto discussion on the Internals List

2005-06-06 Thread Chris Drozdowski
I perused the discussion about the inclusion of goto into the PHP language on the php.internals list. From a PHP end-user's perspective, I would suggest that rather than focusing on adding new language constructs such as goto, that the development team put 100% focus on making what it already

[PHP] Documenting Code Question

2005-06-12 Thread Chris Drozdowski
specify object? Thanks, Chris Drozdowski [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Basic PDO Questions

2006-02-28 Thread Chris Drozdowski
I have a three quick PDO questions. 1) If a PDOStatement is created within a function or method, is it's server result set connection is automatically freed up when the function returns (I assume so, but want to make sure)? 2) Does setting a PDOStatement to null (PDOStatement = null)

[PHP] PDO Changes from 5.0.x To 5.1.x

2006-03-01 Thread Chris Drozdowski
According to documentation, PDO globals constants in 5.0.3+ were changed to class constants in 5.1. Does anyone have a suggestion for portability of constants between the 5.0.x branch and the 5.1 branch without having to rewrite code. Besides the constants, what other differences exist in

[PHP] Mail Injection- Which Mail function Parameters

2005-11-17 Thread Chris Drozdowski
Hello, When using the mail() function to send a simple mail message, which specific parameters of the function need to cleaned to prevent mail injection? First of all I am already validating the $to parameter to be a valid email address. After reading

[PHP] Mail Injection- Which Mail function Parameters CORRECTED

2005-11-17 Thread Chris Drozdowski
Hello, When using the mail() function to send a simple mail message, which specific parameters of the function need to cleaned to prevent mail injection? First of all I am already validating the $to parameter to be a valid email address. After reading