RE: [PHP] Tracking down the elusive expecting T_PAAMAYIM_NEKUDOTAYIM

2008-05-14 Thread Boyd, Todd M.
In your code, it appears you forgot to close a pair of parentheses: --- foreach($set as $key=value) { if (array_key_exists($key,$this-titles) { $this-a[$key] = $value; } } --- It looks like that 3rd line should be: --- if

RE: [PHP] question about validation and sql injection

2008-05-16 Thread Boyd, Todd M.
Sudhakar, Bundling your parameters and using prepared statements will prevent any and all SQL Injection from taking place, as the parameters themselves will NEVER (repeat, NEVER) be considered a part of the query. They are considered only to be data to be used in the query. Example: [code] $dbc

RE: [PHP] JavaScript and PHP

2008-05-16 Thread Boyd, Todd M.
-Original Message- 8 snip! That's incorrect. A form will function perfectly well with only name= attributes, and no ids, and it's quite possible for JavaScript to address the form elements using only the names (in fact, it's easier than via the ids as there's a short syntax for

RE: [PHP] php mysql live feed

2008-05-21 Thread Boyd, Todd M.
Nameless, I see someone mentioned the setTimeout(function, milliseconds) function for JavaScript. I would also like to point out that you can use setInterval(function, milliseconds) in order to have an event repeat at a set interval. For instance, let's say you had a page laid out like so:

RE: [PHP] looking a regular expresion

2008-05-28 Thread Boyd, Todd M.
-Original Message- From: Manuel Pérez López [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2008 2:06 PM To: php-general@lists.php.net Subject: [PHP] looking a regular expresion Hello: I need to include a pair of negations with two complete word into a regular expresion for

RE: [PHP] looking a regular expresion

2008-05-28 Thread Boyd, Todd M.
-Original Message- From: Manuel Pérez López [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2008 2:06 PM To: php-general@lists.php.net Subject: [PHP] looking a regular expresion Hello: I need to include a pair of negations with two complete word into a regular

RE: [PHP] saving outside website content via php...

2008-06-02 Thread Boyd, Todd M.
-Original Message- From: blackwater dev [mailto:[EMAIL PROTECTED] Sent: Sunday, June 01, 2008 9:26 PM To: Shawn McKenzie Cc: php-general@lists.php.net Subject: Re: [PHP] saving outside website content via php... Yes, but file_get_contents will get me the code which I could then

RE: [PHP] Avoid object twice

2008-06-04 Thread Boyd, Todd M.
Thank you for your advice me! -My.php--- ?php Class My{ private $word; function __construct($getword){ $this-word=$getword; } public function buff(){ mail([EMAIL PROTECTED],test,test); } } ?

RE: [PHP] Avoid object twice

2008-06-04 Thread Boyd, Todd M.
I knew it . But Hello and Good is different file. I would like to get Good from b.php. Please tell me goo advice. Yui 2008/6/4 Boyd, Todd M. [EMAIL PROTECTED]: Thank you for your advice me! -My.php--- ?php Class My{ private $word; function

RE: [PHP] Avoid object twice

2008-06-04 Thread Boyd, Todd M.
-Original Message- From: Yui Hiroaki [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2008 10:03 AM To: Thijs Lensselink Cc: php-general@lists.php.net Subject: Re: [PHP] Avoid object twice NO! That is what I do not want! setting.php need to run mail() function. also

RE: [PHP] Avoid object twice

2008-06-04 Thread Boyd, Todd M.
-Original Message- From: Yui Hiroaki [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2008 12:28 PM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: Re: [PHP] Avoid object twice Thanks you for php developer. If php can not share the parameter each different file

RE: Re: [PHP] Are there free http mysql tunneling writed in php ?

2008-06-05 Thread Boyd, Todd M.
-Original Message- From: Per Jessen [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2008 3:06 AM To: php-general@lists.php.net Subject: Re: [PHP] Are there free http mysql tunneling writed in php ? KLEIN Stéphane wrote: Hi, do you know one free (open source) http mysql

RE: [PHP] Dynamic form changes without refresh

2008-06-05 Thread Boyd, Todd M.
-Original Message- From: Mayer, Jonathan [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2008 7:18 AM To: 'php-general@lists.php.net' Subject: [PHP] Dynamic form changes without refresh ---8--- snip Using some basic javascript/AJAX, I have set up a link next to each text box,

RE: Re: [PHP] Are there free http mysql tunneling writed in php ?

2008-06-05 Thread Boyd, Todd M.
-Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2008 10:33 AM To: Boyd, Todd M. Cc: Per Jessen; php-general@lists.php.net Subject: RE: Re: [PHP] Are there free http mysql tunneling writed in php ? I don't know of any specific implementation

RE: Re: [PHP] Are there free http mysql tunneling writed in php ?

2008-06-05 Thread Boyd, Todd M.
-Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2008 10:49 AM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: RE: Re: [PHP] Are there free http mysql tunneling writed in php ? !-- Snip -- I seem to have hit a nerve. Sorry for explaining

RE: Re: [PHP] Are there free http mysql tunneling writed in php ?

2008-06-05 Thread Boyd, Todd M.
-Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2008 11:51 AM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: RE: Re: [PHP] Are there free http mysql tunneling writed in php ? ---8--- snip I'm all for securing your PHP stuff

RE: [PHP] Method chaining off constructors

2008-06-06 Thread Boyd, Todd M.
-Original Message- From: Christoph Boget [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2008 9:45 AM To: PHP General Subject: [PHP] Method chaining off constructors Is there a reason why you can't do method chaining off of constructors? Consider the following class: class

RE: [PHP] About HTML CSS

2008-06-11 Thread Boyd, Todd M.
-Original Message- From: Alberto García Gómez [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2008 9:49 PM To: PHP General list Subject: [PHP] About HTML CSS Hi Fellow: I wonder if there some list about HTML/CSS/JavaScript and Genereal Web Design. Thanks STFW:

RE: [PHP] PHP Runs But Does Not Display on Linux

2008-06-12 Thread Boyd, Todd M.
-Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2008 9:02 AM To: [EMAIL PROTECTED] Cc: php-general@lists.php.net Subject: RE: [PHP] PHP Runs But Does Not Display on Linux Hello, I have reinstalled Apache back into my Linux machine,

RE: [PHP] Command-line PHP memory limit

2008-06-12 Thread Boyd, Todd M.
-Original Message- From: Shawn McKenzie [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2008 11:06 AM To: php-general@lists.php.net Subject: Re: [PHP] Command-line PHP memory limit Per Jessen wrote: Rene Fournier wrote: Is it possible to set a unique memory limit for PHP

RE: [PHP] Re: HTML 5

2008-06-13 Thread Boyd, Todd M.
-Original Message- From: Eric Butera [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2008 7:22 AM To: [EMAIL PROTECTED] Cc: php-general@lists.php.net Subject: Re: [PHP] Re: HTML 5 On Fri, Jun 13, 2008 at 4:35 AM, Richard Heyes [EMAIL PROTECTED] wrote: i suppose i put too much

RE: [PHP] Forum coded in PHP with mail and news gateway

2008-06-13 Thread Boyd, Todd M.
-Original Message- From: Arno Kuhl [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2008 1:13 AM To: 'Michelle Konzack'; 'PHP - General' Subject: RE: [PHP] Forum coded in PHP with mail and news gateway Not sure about the gateways but you can look at www.phpbb.com

RE: [PHP] PHPMailer not working but Squirell mail works

2008-06-13 Thread Boyd, Todd M.
-Original Message- From: Shiplu [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2008 10:55 AM To: PHP General list Subject: [PHP] PHPMailer not working but Squirell mail works Hi, In my web server, I cant send mail by PHPMailer. But If I login by the squirellmail webclient my

RE: [PHP] PHP Runs But Does NOT Connect to MSSQL Server

2008-06-13 Thread Boyd, Todd M.
-Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2008 10:25 AM To: Greg Maruszeczka; php-general@lists.php.net Subject: RE: [PHP] PHP Runs But Does NOT Connect to MSSQL Server Hi, Greg: i have went back to the conf file I have in the

RE: [PHP] Kindla 0T, but here goes...

2008-06-13 Thread Boyd, Todd M.
-Original Message- From: Daniel Brown [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2008 4:13 PM To: Ryan S Cc: php php Subject: Re: [PHP] Kindla 0T, but here goes... On Fri, Jun 13, 2008 at 4:49 PM, Ryan S [EMAIL PROTECTED] wrote: when the user clicks on any of those links

RE: [PHP] Another way to send variables

2008-06-13 Thread Boyd, Todd M.
-Original Message- From: R B [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2008 4:50 PM To: PHP List Subject: [PHP] Another way to send variables Hello. I have this script (script1.php): ?php $a = Hello; header(Location: script2.php); ? I need to send the $a

RE: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: Per Jessen [mailto:[EMAIL PROTECTED] Sent: Friday, June 20, 2008 12:23 PM To: php-general@lists.php.net Subject: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable ---8--- There's no flame-war brewing here at all, but whether or not

RE: [PHP] Re: [MOREINFO] How to prevent DoS on PHP script?

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: Michelle Konzack [mailto:[EMAIL PROTECTED] Sent: Saturday, June 21, 2008 8:10 AM To: php-general@lists.php.net Subject: [PHP] Re: [MOREINFO] How to prevent DoS on PHP script? Hello, I should note additionaly they http password protection is not realy an

RE: [PHP] Another canvas example

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: Richard Heyes [mailto:[EMAIL PROTECTED] Sent: Saturday, June 21, 2008 9:40 AM To: PHP General List Subject: [PHP] Another canvas example Hi, Latest in my new series of look at me, aren't I cool canvas examples is here:

RE: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: Dotan Cohen [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 10:59 AM To: php-general@lists.php.net Subject: Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable 2008/6/23 Boyd, Todd M. [EMAIL PROTECTED]: THANK YOU. (Re: mixed

RE: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: Daniel Brown [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 11:23 AM To: Boyd, Todd M. Cc: Per Jessen; php-general@lists.php.net Subject: Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable On Mon, Jun 23, 2008 at 11:05 AM, Boyd

RE: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: Daniel Brown [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 11:42 AM To: Boyd, Todd M. Cc: Dotan Cohen; php-general@lists.php.net Subject: Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable On Mon, Jun 23, 2008 at 12:04 PM

RE: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Boyd, Todd M.
---8--- lotsa snip I call you Israelien camerads @army Kanonenfutter. I do not know French nor German, so I can only guess that means cannon snacks? Cannon fodder is an informal term for military personnel who are regarded or treated as expendable in the face of enemy fire. The term is

RE: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: Dotan Cohen [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 1:49 PM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: Re: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable ---8--- snip Shamelessly lifted that from

RE: [PHP] Uploading files without saving them

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: James Colannino [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 3:48 PM To: php-general@lists.php.net Subject: [PHP] Uploading files without saving them Hey everyone. Here's a simple question. I'd like to be able to import information from a text

RE: [PHP] Re: Another canvas example

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: Ray Hauge [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 10:02 AM To: Per Jessen Cc: php-general@lists.php.net Subject: Re: [PHP] Re: Another canvas example ---8--- snip My son likes trains, and I was using this as an excuse to learn JavaScript

RE: [PHP] Include Problem

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 1:04 PM To: Daniel Brown Cc: Jim Lucas; Jay Blanchard; php-general@lists.php.net Subject: RE: [PHP] Include Problem From: Daniel Brown [EMAIL

RE: [PHP] Include Problem

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 1:39 PM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: RE: [PHP] Include Problem Hi, Thanks for the clarifcations. I have two more questions regarding this issue

RE: [PHP] Monitor a WP website

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: tedd [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 1:47 PM To: php php Subject: Re: [PHP] Monitor a WP website At 10:09 AM -0700 6/24/08, Ryan S wrote: Hey, Is there a way to check if a new post has been submitted on your favourite wordpress

RE: [PHP] Include Problem

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: Boyd, Todd M. [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 1:48 PM To: Wei, Alice J. Cc: php-general@lists.php.net Subject: RE: [PHP] Include Problem -Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Tuesday

RE: [PHP] Monitor a WP website

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: Ryan S [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 2:18 PM To: Boyd, Todd M.; tedd Cc: php-general@lists.php.net Subject: Re: [PHP] Monitor a WP website clippity So, you want something to tell you if something new has been added

RE: [PHP] Monitor a WP website

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: Ryan S [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 2:23 PM To: Stut Cc: Eric Butera; php php Subject: Re: [PHP] Monitor a WP website Got an example? I've never seen a WP site with RSS feeds disabled. Hey Stut, Actually, dont have an

RE: [PHP] Monitor a WP website

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: Ryan S [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 2:34 PM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: Re: [PHP] Monitor a WP website snippy If it's RSS, I think it's going to be XML regardless of the language they're using

RE: [PHP] Monitor a WP website

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: Ryan S [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 2:58 PM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: Re: [PHP] Monitor a WP website chip Ryan, That feed is indeed XML. /chip Ooookay! I think i see where my confusion

RE: [PHP] Include Problem

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 3:11 PM To: Boyd, Todd M.; php-general@lists.php.net Subject: RE: [PHP] Include Problem From: Boyd, Todd M. [EMAIL PROTECTED] Sent: Tuesday, June

RE: [PHP] Include Problem

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 3:51 PM To: Boyd, Todd M.; php-general@lists.php.net Subject: RE: [PHP] Include Problem Alice, If you simply need to execute a remote PHP script and pass variables, you could do

RE: [PHP] Include Problem

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 4:07 PM To: Boyd, Todd M.; php-general@lists.php.net Subject: RE: [PHP] Include Problem ---8--- snip I think that the variables passed to will be used by that code to do perform

RE: [PHP] Monitor a WP website

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: tedd [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 4:22 PM To: php php Subject: Re: [PHP] Monitor a WP website ---8--- big snip It's not rocket science -- but occasionally my solutions leave craters. Haha! Yes! I'm going to use this (with your

RE: [PHP] ImageTTFText leaves Black in letters

2008-06-24 Thread Boyd, Todd M.
-Original Message- From: Stephen Pynenburg [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 4:27 PM To: php-general@lists.php.net Subject: [PHP] ImageTTFText leaves Black in letters Hi all, I'm using imagettftext, and my script works perfectly, except that on these TTF

RE: [PHP] Re: exec() Error

2008-06-25 Thread Boyd, Todd M.
-Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2008 9:02 AM To: Shawn McKenzie; php-general@lists.php.net Subject: RE: [PHP] Re: exec() Error Hi, Shawn and all: I tried to run the script using the method you suggested for Windows,

RE: [PHP] Re: exec() Error

2008-06-25 Thread Boyd, Todd M.
-Original Message- From: Boyd, Todd M. [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2008 9:10 AM To: Wei, Alice J. Cc: php-general@lists.php.net Subject: RE: [PHP] Re: exec() Error -Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Wednesday

RE: [PHP] array_diff()?

2008-06-25 Thread Boyd, Todd M.
-Original Message- From: Thiago H. Pojda [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2008 3:10 PM To: php-general@lists.php.net Subject: [PHP] array_diff()? *accidentally sent* Guys, Perhaps I'm missing something or just trying with the wrong tools... But the thing

RE: Re: [PHP] exec() Error

2008-06-25 Thread Boyd, Todd M.
-Original Message- From: Per Jessen [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2008 2:48 PM To: php-general@lists.php.net Subject: Re: [PHP] exec() Error Wei, Alice J. wrote: I have got a task from my client asking me to build something that allows

RE: Re: [PHP] exec() Error

2008-06-25 Thread Boyd, Todd M.
-Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2008 3:31 PM To: Boyd, Todd M.; Per Jessen; php-general@lists.php.net Subject: RE: Re: [PHP] exec() Error ---8--- snip Well, http://www.mysite.com/calculate.php; is not an executable. Try

RE: RE: Re: [PHP] exec() Error

2008-06-26 Thread Boyd, Todd M.
-Original Message- From: Per Jessen [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2008 1:11 AM To: php-general@lists.php.net Subject: RE: Re: [PHP] exec() Error Boyd, Todd M. wrote: Well, http://www.mysite.com/calculate.php; is not an executable. Try this instead

RE: [PHP] Inspiration for a Tombstone.

2008-06-26 Thread Boyd, Todd M.
-Original Message- From: tedd [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2008 9:31 AM To: php php Subject: [PHP] Inspiration for a Tombstone. Hi gang: For a break in our normal serious thinking, I suggested tombstone wit of: Always on the edge of greatness Dan

RE: [PHP] Inspiration for a Tombstone.

2008-06-26 Thread Boyd, Todd M.
-Original Message- From: tedd [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2008 10:45 AM To: php php Subject: Re: [PHP] Inspiration for a Tombstone. Or unlink('tedd'); I think that would've already been done, eh? ;) Todd Boyd Web Programmer -- PHP General Mailing List

RE: Re: [PHP] exec() Error

2008-06-27 Thread Boyd, Todd M.
-Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2008 7:50 AM To: Boyd, Todd M.; php-general@lists.php.net Subject: RE: Re: [PHP] exec() Error Hi, Todd: It looks like I have some other errors in my Perl code, and I got it fixed

RE: [PHP] Re: Inspiration for a Tombstone.

2008-06-27 Thread Boyd, Todd M.
-Original Message- From: Jay Blanchard [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2008 8:50 AM To: tedd; php-general@lists.php.net Subject: RE: [PHP] Re: Inspiration for a Tombstone. [snip] And being dyslexic, I knew the 'Dan S' should have come first, but didn't

RE: [PHP] FW: [SPAM] RE: [PHP] fwrite() Append Files

2008-06-27 Thread Boyd, Todd M.
-Original Message- From: Chris Scott [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2008 8:48 AM To: php-general@lists.php.net Subject: [PHP] FW: [SPAM] RE: [PHP] fwrite() Append Files Importance: Low I don't think you can open files for writing over http, you get an error:

RE: [PHP] String to date

2008-06-30 Thread Boyd, Todd M.
-Original Message- From: Mark Bomgardner [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2008 3:58 PM To: php-general@lists.php.net Subject: [PHP] String to date I need to convert a date retrieved from user input to a mysql date. Here the problem, I need to convert one of three

RE: [PHP] Splitting up long URLs

2008-07-01 Thread Boyd, Todd M.
-Original Message- From: Brian Dunning [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2008 3:27 PM To: php-general@lists.php.net Subject: [PHP] Splitting up long URLs I have a web page that lists most recent comments in a left margin. Sometimes people post long URLs, or even

RE: [PHP] CURL de-bugging: So why am I not getting the results page on the target site?

2008-07-02 Thread Boyd, Todd M.
-Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2008 9:42 PM To: [EMAIL PROTECTED] Cc: php-general@lists.php.net Subject: Re: [PHP] CURL de-bugging: So why am I not getting the results page on the target site? ioannes wrote: I didn't get any

RE: [PHP] PHPExcel

2008-07-03 Thread Boyd, Todd M.
-Original Message- From: David Giragosian [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2008 11:19 AM To: php-general@lists.php.net Subject: Re: [PHP] PHPExcel On 7/3/08, Shawn McKenzie [EMAIL PROTECTED] wrote: Richard Heyes wrote: Happy 4th of July! How did you

RE: [PHP] Looking for a reasonable explanation as to why $_REQUEST exists

2008-07-07 Thread Boyd, Todd M.
-Original Message- From: mike [mailto:[EMAIL PROTECTED] Sent: Monday, July 07, 2008 2:09 PM To: Daniel Brown Cc: Eric Butera; php-general@lists.php.net Subject: Re: [PHP] Looking for a reasonable explanation as to why $_REQUEST exists On 7/7/08, Daniel Brown [EMAIL PROTECTED]

RE: [PHP] Need help with regular expression

2008-07-10 Thread Boyd, Todd M.
-Original Message- From: Maxim Antonov [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2008 4:24 AM To: php-general@lists.php.net; Daniel Brown Subject: Re: [PHP] Need help with regular expression Hello. But I need no td and tr inside regular expression It is a part of my

[PHP] OT - RE: [PHP] scalable web gallery

2008-07-10 Thread Boyd, Todd M.
-Original Message- From: Daniel Brown [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2008 9:42 AM To: paragasu Cc: php-general@lists.php.net Subject: Re: [PHP] scalable web gallery ---8--- snip And for the record, in the olden days, there was a limit of about 2048 files

RE: [PHP] OT - RE: [PHP] scalable web gallery

2008-07-10 Thread Boyd, Todd M.
-Original Message- From: Robert Cummings [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2008 11:24 AM To: Boyd, Todd M. Cc: Daniel Brown; php-general@lists.php.net Subject: Re: [PHP] OT - RE: [PHP] scalable web gallery On Thu, 2008-07-10 at 10:18 -0500, Boyd, Todd M. wrote

RE: [PHP] OT - RE: [PHP] scalable web gallery

2008-07-11 Thread Boyd, Todd M.
-Original Message- From: Robert Cummings [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2008 11:31 PM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: RE: [PHP] OT - RE: [PHP] scalable web gallery On Thu, 2008-07-10 at 12:06 -0500, Boyd, Todd M. wrote: -Original

RE: [PHP] Question regarding OO

2008-07-11 Thread Boyd, Todd M.
-Original Message- From: Jay Blanchard [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2008 1:51 PM To: Eric Butera; php php Subject: RE: [PHP] Question regarding OO [snip] I understand my error in thinking now. Apple can't extend Tree. Oak, Evergreen or Willow extend Tree.

RE: [PHP] Copy Function Errors

2008-07-16 Thread Boyd, Todd M.
-Original Message- From: Wei, Alice J. [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2008 3:46 PM To: Robert Cummings Cc: php-general@lists.php.net Subject: RE: [PHP] Copy Function Errors ---8--- snip Is there something I could do here to allow my file be copied to the

RE: [PHP] is there a problem with php script pulling HTML out of database as it writes the page??

2008-07-17 Thread Boyd, Todd M.
-Original Message- From: Andrew Ballard [mailto:[EMAIL PROTECTED] Sent: Thursday, July 17, 2008 11:33 AM To: PHP General list Subject: Re: [PHP] is there a problem with php script pulling HTML out of database as it writes the page?? On Thu, Jul 17, 2008 at 12:02 PM, Stut [EMAIL

RE: [PHP] Dynamic Select Lists - 1st Selection Effects 2nd!

2008-07-31 Thread Boyd, Todd M.
-Original Message- From: Rahul S. Johari [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2008 11:40 AM To: php-general@lists.php.net Subject: [PHP] Dynamic Select Lists - 1st Selection Effects 2nd! Ave, What I have is two Select (Drop-Down) lists (State County) and I'm

RE: [PHP] Dynamic Select Lists - 1st Selection Effects 2nd!

2008-07-31 Thread Boyd, Todd M.
-Original Message- From: Rahul S. Johari [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2008 12:27 PM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: Re: [PHP] Dynamic Select Lists - 1st Selection Effects 2nd! On Jul 31, 2008, at 12:55 PM, Boyd, Todd M. wrote

RE: [PHP] Dynamic Select Lists - 1st Selection Effects 2nd!

2008-07-31 Thread Boyd, Todd M.
-Original Message- From: Micah Gersten [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2008 1:59 PM To: PHP General list Subject: Re: [PHP] Dynamic Select Lists - 1st Selection Effects 2nd! What I usually do is default to the most common country and show the associated states.

RE: [PHP] Dynamic Select Lists - 1st Selection Effects 2nd! -- SOLVED!!

2008-07-31 Thread Boyd, Todd M.
-Original Message- From: Rahul S. Johari [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2008 2:06 PM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: Re: [PHP] Dynamic Select Lists - 1st Selection Effects 2nd! -- SOLVED!! Did IT Haha ... just as you were

RE: [PHP] Dynamic Select Lists - 1st Selection Effects 2nd!

2008-07-31 Thread Boyd, Todd M.
-Original Message- From: Micah Gersten [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2008 2:08 PM To: Boyd, Todd M. Cc: PHP General list Subject: Re: [PHP] Dynamic Select Lists - 1st Selection Effects 2nd! You're right. Same principles apply though. Thank you, Micah

RE: [PHP] Internationalisation and MB strings

2008-08-01 Thread Boyd, Todd M.
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yeti Sent: Friday, August 01, 2008 10:58 AM To: Andrew Ballard Cc: PHP General list Subject: Re: [PHP] Internationalisation and MB strings Oh right. Doing 1 measurement only is not even worth a

RE: [PHP] Internationalisation and MB strings

2008-08-01 Thread Boyd, Todd M.
-Original Message- From: Andrew Ballard [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2008 2:06 PM To: PHP General list Subject: Re: [PHP] Internationalisation and MB strings ---8--- I didn't see the multiplication by 1000 and the above numbers don't show any trailing

RE: [PHP] Not found regex

2008-08-04 Thread Boyd, Todd M.
-Original Message- From: Shawn McKenzie [mailto:[EMAIL PROTECTED] Sent: Monday, August 04, 2008 10:33 AM To: php-general@lists.php.net Subject: Re: [PHP] Not found regex Manoj Singh wrote: Hi All, Thanks for your replies. Actually i am placing this regex in .htaccess file.

RE: [PHP] PDO prepared statements and LIKE escaping

2008-08-04 Thread Boyd, Todd M.
-Original Message- From: Andrew Ballard [mailto:[EMAIL PROTECTED] Sent: Monday, August 04, 2008 10:49 AM To: PHP General list Subject: Re: [PHP] PDO prepared statements and LIKE escaping On Mon, Aug 4, 2008 at 11:35 AM, Larry Garfield [EMAIL PROTECTED] wrote: On Mon, 04 Aug

RE: [PHP] Re: Version Control Software

2008-08-07 Thread Boyd, Todd M.
-Original Message- From: Benjamin Darwin [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2008 2:05 PM To: Colin Guthrie Cc: php-general@lists.php.net Subject: Re: [PHP] Re: Version Control Software I'm wondering if anybody knows of a version control software program that

RE: [PHP] Re: PUT vs. POST (was: php File upload)

2008-08-08 Thread Boyd, Todd M.
-Original Message- From: mike [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2008 4:36 PM To: Per Jessen Cc: php-general@lists.php.net Subject: Re: [PHP] Re: PUT vs. POST (was: php File upload) On 8/8/08, Per Jessen [EMAIL PROTECTED] wrote: I am not for or against either,

RE: RE: [PHP] Re: PUT vs. POST (was: php File upload)

2008-08-11 Thread Boyd, Todd M.
-Original Message- From: Per Jessen [mailto:[EMAIL PROTECTED] Sent: Saturday, August 09, 2008 9:09 AM To: php-general@lists.php.net Subject: RE: [PHP] Re: PUT vs. POST (was: php File upload) Boyd, Todd M. wrote: I had to use Java for the simple fact that PHP by itself cannot

[PHP] Re: PUT vs. POST (was: php File upload)

2008-08-11 Thread Boyd, Todd M.
-Original Message- From: mike [mailto:[EMAIL PROTECTED] Sent: Saturday, August 09, 2008 2:47 PM To: Richard Heyes Cc: php-general@lists.php.net Subject: Re: [PHP] Re: PUT vs. POST (was: php File upload) On Aug 9, 2008, at 7:50 AM, Richard Heyes [EMAIL PROTECTED] wrote: Given

RE: RE: RE: [PHP] Re: PUT vs. POST (was: php File upload)

2008-08-11 Thread Boyd, Todd M.
-Original Message- From: Per Jessen [mailto:[EMAIL PROTECTED] Sent: Monday, August 11, 2008 1:17 PM To: php-general@lists.php.net Subject: RE: RE: [PHP] Re: PUT vs. POST (was: php File upload) tedd wrote: Todd, I just wanted to stress that there is NO way for PHP to access

RE: [PHP] Re: regex

2008-08-13 Thread Boyd, Todd M.
-Original Message- From: Shawn McKenzie [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2008 3:31 PM To: php-general@lists.php.net Subject: [PHP] Re: regex Philip Thompson wrote: Figured it out. Just needed to stretch my brain a lil. On Aug 13, 2008, at 3:07 PM, Philip

RE: [PHP] On one of my computers, php can't see an external javascriptI included

2008-08-14 Thread Boyd, Todd M.
-Original Message- From: Carlos Medina [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2008 2:06 AM To: php-general@lists.php.net Subject: Re: [PHP] On one of my computers, php can't see an external javascriptI included googling1000 schrieb: I have apache and php on

RE: [PHP] PHP editor for linux

2008-08-14 Thread Boyd, Todd M.
-Original Message- From: Micah Gersten [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2008 12:20 PM To: [EMAIL PROTECTED] Cc: php-general@lists.php.net Subject: Re: [PHP] PHP editor for linux I use Eclipse with PHPEclipse. I think you have to install from source to get

RE: [PHP] PHP editor for linux

2008-08-14 Thread Boyd, Todd M.
From: Nathan Nobbe [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2008 4:00 PM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: Re: [PHP] PHP editor for linux On Thu, Aug 14, 2008 at 2:54 PM, Boyd, Todd M. [EMAIL PROTECTED] wrote: -Original Message- From: Micah Gersten

RE: [PHP] Displaying files

2008-08-14 Thread Boyd, Todd M.
-Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2008 4:21 PM To: Dan Shirah Cc: PHP-General List Subject: Re: [PHP] Displaying files On 14 Aug 2008, at 21:57, Dan Shirah wrote: That simply means it can't open the file. Make sure the machine

RE: [PHP] Displaying files

2008-08-14 Thread Boyd, Todd M.
-Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2008 4:34 PM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: Re: [PHP] Displaying files On 14 Aug 2008, at 22:24, Boyd, Todd M. wrote: -Original Message- From: Stut [mailto

RE: [PHP] Removing an element from the middle of an mdlti-dimentsional array

2008-08-15 Thread Boyd, Todd M.
-Original Message- From: Simcha Younger [mailto:[EMAIL PROTECTED] Sent: Friday, August 15, 2008 2:49 AM To: 'Don'; php-general@lists.php.net Subject: RE: [PHP] Removing an element from the middle of an mdlti- dimentsional array array_splice($a, 1, 1); This will remove the

RE: [PHP] import XLS sheet into DB

2008-08-15 Thread Boyd, Todd M.
-Original Message- From: Alain R. [mailto:[EMAIL PROTECTED] Sent: Friday, August 15, 2008 3:30 AM To: php-general@lists.php.net Subject: [PHP] import XLS sheet into DB Hi, I would like to import content of an XLS sheet into a PostgreSQL DB (table). How can i do that ?

RE: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Boyd, Todd M.
-Original Message- From: Dan Shirah [mailto:[EMAIL PROTECTED] Sent: Friday, August 15, 2008 9:20 AM To: Jay Moore Cc: php-general@lists.php.net Subject: Re: [PHP] Re: Passing variable to a page in a frameset Frames?! As a fellow Wisconsinite and a web developer, I'm going

RE: [PHP] Re: PHP editor for linux

2008-08-15 Thread Boyd, Todd M.
-Original Message- From: Davi Vidal [mailto:[EMAIL PROTECTED] Sent: Friday, August 15, 2008 12:07 PM To: php-general@lists.php.net Subject: Re: [PHP] Re: PHP editor for linux Em Friday 15 August 2008, Robert Cummings escreveu: On Fri, 2008-08-15 at 10:43 -0600, Nathan

RE: [PHP] SESSION problem

2008-08-15 Thread Boyd, Todd M.
-Original Message- From: tedd [mailto:[EMAIL PROTECTED] Sent: Friday, August 15, 2008 12:10 PM To: php-general@lists.php.net Subject: [PHP] SESSION problem Hi gang: Arrggg -- what the heck is going on? I can't get anything to pass via SESSION -- what's wrong? Here's the

RE: [PHP] How to submit form via PHP

2008-08-15 Thread Boyd, Todd M.
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, August 15, 2008 2:54 PM To: php-general@lists.php.net Subject: RE: [PHP] How to submit form via PHP Thanks, that was what I needed. Also I found this:

RE: [PHP] Semi-ADVERT, not really spam, sorry for it

2008-08-19 Thread Boyd, Todd M.
-Original Message- From: tedd [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 19, 2008 2:24 PM To: V S Rawat; php-general@lists.php.net Subject: Re: [PHP] Semi-ADVERT, not really spam, sorry for it At 2:28 PM -0400 8/19/08, tedd wrote: V: OFF-LIST I have not kept up on this

RE: [PHP] Developing a game using Ming

2008-08-20 Thread Boyd, Todd M.
-Original Message- From: Yasir Malik [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2008 9:55 AM To: php-general@lists.php.net Subject: Re: [PHP] Developing a game using Ming http://php.net/manual/en/class.swfsound.php I saw that example, and the examples at

  1   2   3   >