Re: [PHP] Encoding for W3C Validation

2010-08-04 Thread Carlton Whitehead
o concatenate them separately). Pick your poison. The PHP documentation on strings is pretty good, and it couldn't hurt to have a look: http://php.net/manual/en/language.types.string.php Carlton Whitehead On Tue, Aug 3, 2010 at 3:44 PM, Rick Dwyer wrote: > > On Aug 3, 2010, at 3:36 PM,

Re: [PHP] page called from form "action=post" not appearing on screen

2008-05-22 Thread Carlton Whitehead
right now. If it's disabled, it might be suppressing a helpful error message. Remember to restart your web server if you change the php.ini. Regards, Carlton Whitehead -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] help with autoload

2008-03-24 Thread Carlton Whitehead
ining the autoload function definition. Also make sure the path used for it is correct. It's really hard to say without looking at the code and filesystem. Just for kicks I made a test case to see if print works from inside the __autoload function, and it did. Regards, Carlton Whitehea

Re: [PHP] PHP5 under IIS6

2007-10-08 Thread Carlton Whitehead
sure the php5isapi.dll is mapped to the .php extension. Regards, Carlton Whitehead - Original Message - From: "Alberto García Gómez" <[EMAIL PROTECTED]> To: php-general@lists.php.net Sent: Monday, October 8, 2007 9:57:42 AM (GMT-0500) America/New_York Subject: [PHP] PHP

Re: [PHP] Performing Multiple Prepared Queries

2007-10-03 Thread Carlton Whitehead
best to place the free_result call after each call to fetch. Check http://www.php.net/manual/en/function.mysqli-free-result.php for more details about it. Regards, Carlton Whitehead - Original Message - From: "Nathaniel Hall" <[EMAIL PROTECTED]> To: php-general@li

Re: [PHP] The Context of 0

2007-10-02 Thread Carlton Whitehead
er to http://www.php.net/manual/en/language.operators.comparison.php for more details about this. Regards, Carlton Whitehead - Original Message - From: "Jay Blanchard" <[EMAIL PROTECTED]> To: php-general@lists.php.net Sent: Tuesday, October 2, 2007 1:14:42 PM (GMT-0500) Amer

Re: [PHP] strpos error (I'm missing something obvious)

2007-10-01 Thread Carlton Whitehead
http://us.php.net/manual/en/function.strpos.php Regards, Carlton Whitehead Kevin Murphy wrote: I fixed this by changing === TRUE to !== FALSE, so I think I am good to go now. But would still like to know why TRUE doesn't work. Thanks. -- PHP General Mailing List (http://www.php.net

Re: [PHP] strpos error (I'm missing something obvious)

2007-10-01 Thread Carlton Whitehead
ns an integer representing the position of the needle ($site) in the haystack ($referrer). For more info, see http://us.php.net/manual/en/function.strpos.php. Regards, Carlton Whitehead Kevin Murphy wrote: Overly simplified version of my code. $site = "http://www.wnc.edu";; $r

Re: [PHP] Re: PDOStatement execute memory issue?

2007-09-27 Thread Carlton Whitehead
gards, Carlton Whitehead - Original Message - From: "Colin Guthrie" <[EMAIL PROTECTED]> To: php-general@lists.php.net Sent: Thursday, September 27, 2007 4:04:53 AM (GMT-0500) America/New_York Subject: [PHP] Re: PDOStatement execute memory issue? Carlton Whitehead wrote: >

Re: [PHP] PDOStatement execute memory issue?

2007-09-27 Thread Carlton Whitehead
rror) -- not like that would be an acceptable solution anyway. It appears this is a problem with PDO. I'm starting to really get out of my league now. How can I go about fixing this? Regards, Carlton Whitehead Larry Garfield wrote: On Wednesday 26 September 2007, Carlton Whitehead wrote:

Re: [PHP] PDOStatement execute memory issue?

2007-09-26 Thread Carlton Whitehead
ried querying an 'image' type column out of MS SQL 2005 using PDO ODBC? Regards, Carlton Whitehead Jeffery Fernandez wrote: On Thursday 27 September 2007 04:21, Carlton Whitehead wrote: Hi everyone, I'm working on a script that downloads archived fax images (TIFFs and PDFs)

[PHP] PDOStatement execute memory issue?

2007-09-26 Thread Carlton Whitehead
catch (PDOException $e) { die($e->getMessage()); } } Any ideas? Regards, Carlton Whitehead -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Not quite OT but maybe close... Help with MySQL

2007-08-08 Thread Carlton Whitehead
Someone posted this in an Excel -> Postgre SQL thread recently: http://sourceforge.net/projects/phpexcelreader I haven't used it, just reposting the link. Regards, Carlton Whitehead - Original Message - From: "Jason Pruim" <[EMAIL PROTECTED]> To: "PHP Lis

Re: [PHP] Problem with php mail

2007-08-05 Thread Carlton Whitehead
essage is getting blocked) Regards, Carlton Whitehead - Original Message - From: "Tijnema" <[EMAIL PROTECTED]> To: "Jason Sia" <[EMAIL PROTECTED]> Cc: php-general@lists.php.net Sent: Sunday, August 5, 2007 11:22:13 AM (GMT-0500) America/New_York Subject: Re:

Re: [PHP] Array difficulty

2007-07-31 Thread Carlton Whitehead
("lowercase" => 27, "uppercase" => 62, "integer" => 46); The values assigned to each key are randomly generated. Regards, Carlton Whitehead - Original Message - From: "Chris Boget" <[EMAIL PROTECTED]> To: "Carlton Whitehead" <

[PHP] Array difficulty

2007-07-31 Thread Carlton Whitehead
27;m doing this as follows: arsort($chance); foreach ($chance as $type => $value) { $result = $type; break; } At this point, $result would be equal to "uppercase". I feel like this is a really kludgey way to accomplish this. Is there a better way? Regards, Carlton Wh

Re: [PHP] Re: Pirate PHP books online?

2007-07-30 Thread carlton . whitehead
with this ridiculous, unhelpful, off-topic nonsense." Regards, Carlton Whitehead - Original Message - From: "tedd" <[EMAIL PROTECTED]> To: "Crayon Shin Chan" <[EMAIL PROTECTED]>, php-general@lists.php.net Sent: Monday, July 30, 2007 2:08:51 PM (GMT-0500) Ame

Re: [PHP] need insights on encrypting and uploading ASCII file using PHP

2007-07-27 Thread carlton . whitehead
loads/details.aspx?FamilyID=56FC92EE-A71A-4C73-B628-ADE629C89499&displaylang=en I imagine there's a similar utility for Apache... To get a "real" SSL certificate, you probably need to buy one from a reputable Certificate Authority. Regards, Carlton Whitehead - Original Me