php-general Digest 30 Sep 2008 08:53:50 -0000 Issue 5710

2008-09-30 Thread php-general-digest-help
php-general Digest 30 Sep 2008 08:53:50 - Issue 5710 Topics (messages 281136 through 281151): Time Loop 281136 by: MDB 281137 by: Robert Cummings Re: How to submit form via PHP 281138 by: Lupus Michaelis 281141 by: Ashley Sheridan 281142 by: Ashley

Re: [PHP] question about EOF

2008-09-30 Thread Jochem Maas
LKSunny schreef: Hello, i want on inner EOF do something, calculate and call function ? can not ? if yes, how to ? no you can't, store the results of calculation and function calls in variables and use them in the HEREDOC statement. a HEREDOC declaration is just a string declaration like

[PHP] Re: question about EOF

2008-09-30 Thread Ross McKay
On Tue, 30 Sep 2008 12:48:35 +0800, LKSunny wrote: i want on inner EOF do something, calculate and call function ? can not ? if yes, how to ? Same way as you do with strings. e.g. ?php class foo { function bar() { return 'world!'; } function hello() { echo ENDHELLO Hello,

[PHP] Name of graph

2008-09-30 Thread Richard Heyes
Hi, Anyone know what the line in the first bar chart is called? I call it a summary line, but that's wrong. ISTR it being referred to something that involved the word frequency, but I may be off my trolley... You'll need a browser other then MSIE to see them. Thanks. -- Richard Heyes HTML5

Re: [PHP] error warning while connecting to posgreSQL

2008-09-30 Thread Adrian Videnie
Nilesh Govindrajan wrote: Yeah that's true. Placing an @ before the function is a bad idea. Instead use error_reporting(E_NONE) OR error_reporting(0) You should never use error_reporting(E_NONE), not even in production mode. The correct options are: error_reporting(E_ALL | E_STRICT);

Re: [PHP] Name of graph

2008-09-30 Thread Per Jessen
Richard Heyes wrote: Hi, Anyone know what the line in the first bar chart is called? I call it a summary line, but that's wrong. ISTR it being referred to something that involved the word frequency, but I may be off my trolley... How about just 'axis' ? You'll need a browser other

[PHP] Re: Name of graph

2008-09-30 Thread Nathan Rixham
Richard Heyes wrote: Hi, Anyone know what the line in the first bar chart is called? I call it a summary line, but that's wrong. ISTR it being referred to something that involved the word frequency, but I may be off my trolley... You'll need a browser other then MSIE to see them. Thanks.

Re: [PHP] Name of graph

2008-09-30 Thread Richard Heyes
If anything it's a regression line. It represents a trend as a linear function which has been computed using linear regression. Thanks! -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] for the sake of conversation - syntax

2008-09-30 Thread Stut
On 29 Sep 2008, at 12:47, Nathan Rixham wrote: Last week I got to thinking about PHP vs other languages.. sparing the details this is what I decided I'd like my code to look like :) [what *I* /as an OO developer/ need(?want)] ?php package com.mydom.thispackage Looks a lot like Java, not

Re: [PHP] Name of graph

2008-09-30 Thread Per Jessen
Richard Heyes wrote: If anything it's a regression line. It represents a trend as a linear function which has been computed using linear regression. Thanks! I need to add - your line in the first barchart isn't actually a trend nor is it very linear :-) That line is just a different

Re: [PHP] for the sake of conversation - syntax

2008-09-30 Thread Nathan Rixham
Stut wrote: On 29 Sep 2008, at 12:47, Nathan Rixham wrote: Last week I got to thinking about PHP vs other languages.. sparing the details this is what I decided I'd like my code to look like :) [what *I* /as an OO developer/ need(?want)] ?php package com.mydom.thispackage Looks a lot like

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Jay Moore
looks like spam/scam to me Thanks for quoting the whole message then! :P Jay -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Name of graph

2008-09-30 Thread Richard Heyes
I need to add - your line in the first barchart isn't actually a trend nor is it very linear :-) That line is just a different representation (line graph) of the same numbers. Yes, all it does it connect the tops of the bars. Much like a line graph would be with the same values. -- Richard

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Richard Heyes
Thanks for quoting the whole message then! :P Maybe he just wanted to make sure you got it... -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Zend_Form: How to change positions of elements ?

2008-09-30 Thread Nilesh Govindrajan
Hi, I am new to Zend Framework. I would like to know how to change the positions of elements created using Zend_Form. I mean that how do I place two elements one near other instead of in a top-down manner ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Nathan Rixham
Richard Heyes wrote: Thanks for quoting the whole message then! :P Maybe he just wanted to make sure you got it... I'm always really tight on these guy's - but it is just somebody offering us a job I guess; they could have scoured the boards; ripped every email address and spammed the

[PHP] Re: [fw-general] Re: Zend_Form: How to change positions of elements ?

2008-09-30 Thread Nilesh Govindrajan
On Tuesday 30 September 2008 07:13:11 pm Colin Guthrie wrote: Nilesh Govindrajan wrote: I am new to Zend Framework. I would like to know how to change the positions of elements created using Zend_Form. I mean that how do I place two elements one near other instead of in a top-down

[PHP] db_* = pg_*/my_*/ifx_* ?

2008-09-30 Thread Michelle Konzack
Hello, I am using some crapy software, which does not allow switching the Database, where I use PostgreSQL since 1999 and those crapy software force me to install mysql, sqlite and other databases which let the administration, maintenance AND COSTS explode... My own tools are

RE: [PHP] How to submit form via PHP

2008-09-30 Thread Richard Lynch
Yes, any GET parameters you had will not be added in. I believe a fragment (#anchor) will be included however. Read the specs for base to see for sure. It's all spelled out, if you can follow the paper trail and have enough time to read it :-) -Original Message- From: Waynn Lue

[PHP] Re: db_* = pg_*/my_*/ifx_* ?

2008-09-30 Thread Nathan Rixham
Michelle Konzack wrote: Hello, I am using some crapy software, which does not allow switching the Database, where I use PostgreSQL since 1999 and those crapy software force me to install mysql, sqlite and other databases which let the administration, maintenance AND COSTS

Re: [PHP] Re: [fw-general] Re: Zend_Form: How to change positions of elements ?

2008-09-30 Thread Bastien Koert
On Tue, Sep 30, 2008 at 9:47 AM, Nilesh Govindrajan [EMAIL PROTECTED]wrote: On Tuesday 30 September 2008 07:13:11 pm Colin Guthrie wrote: Find the view handler and change the html to place them how you want to place them -- Bastien Cat, the other other white meat

Re: [PHP] Name of graph

2008-09-30 Thread tedd
At 9:53 AM +0100 9/30/08, Richard Heyes wrote: Hi, Anyone know what the line in the first bar chart is called? I call it a summary line, I've always called it Timmy -- but you may call it whatever you want. The summary line, as shown on your chart, is simply a line graph, there is no

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Jochem Maas
Nathan Rixham schreef: Richard Heyes wrote: Thanks for quoting the whole message then! :P Maybe he just wanted to make sure you got it... I'm always really tight on these guy's - but it is just somebody offering us a job I guess; they could have scoured the boards; ripped every email

Re: [PHP] question about EOF

2008-09-30 Thread tedd
At 12:48 PM +0800 9/30/08, LKSunny wrote: Hello, i want on inner EOF do something, calculate and call function ? can not ? if yes, how to ? ? echo EOF some text can i calculate on inner EOF ? 10*100 display 1000 ? can i add function on inner EOF ? date('Y') display 2008 ? any more text.

Re: [PHP] for the sake of conversation - syntax

2008-09-30 Thread Stut
On 30 Sep 2008, at 14:00, Nathan Rixham wrote: Stut wrote: On 29 Sep 2008, at 12:47, Nathan Rixham wrote: import com.anotherdom.MysqlDbHandler as DbHandlerA; import com.somedom.DbHandler as DbHandlerB; # as makes this easier import com.mydom.thatpackage.RssParser; # we don't have to as Would

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Jim Lucas
Nathan Rixham wrote: Richard Heyes wrote: Thanks for quoting the whole message then! :P Maybe he just wanted to make sure you got it... I'm always really tight on these guy's - but it is just somebody offering us a job I guess; they could have scoured the boards; ripped every email

[PHP] navigation / location bar

2008-09-30 Thread Alain Roger
Hi, a lot of web sites propose a locationbar (something like dynamic map site) to end user when they are browsing the website. usually i looks like that: Home Products Software Operating System Windows XP User can come back to a previous parent node by just clicking on the name, for example

RE: [PHP] navigation / location bar

2008-09-30 Thread Jay Blanchard
[snip] a lot of web sites propose a locationbar (something like dynamic map site) to end user when they are browsing the website. usually i looks like that: Home Products Software Operating System Windows XP User can come back to a previous parent node by just clicking on the name, for

Re: [PHP] navigation / location bar

2008-09-30 Thread Stut
On 30 Sep 2008, at 16:04, Alain Roger wrote: a lot of web sites propose a locationbar (something like dynamic map site) to end user when they are browsing the website. usually i looks like that: Home Products Software Operating System Windows XP User can come back to a previous parent

Re: [PHP] Name of graph

2008-09-30 Thread Richard Heyes
BTW -- What is it with you and graphs? Are you creating a library for charting? Created: http://www.phpguru.org/RGraph -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Nathan Rixham
Jim Lucas wrote: Nathan Rixham wrote: Richard Heyes wrote: Thanks for quoting the whole message then! :P Maybe he just wanted to make sure you got it... I'm always really tight on these guy's - but it is just somebody offering us a job I guess; they could have scoured the boards; ripped

Re: [PHP] navigation / location bar

2008-09-30 Thread Alain Roger
Interesting but how to make this hierarchy ? this i do not know in PHP :-( where can i find code examples ? On Tue, Sep 30, 2008 at 5:27 PM, Stut [EMAIL PROTECTED] wrote: On 30 Sep 2008, at 16:04, Alain Roger wrote: a lot of web sites propose a locationbar (something like dynamic map site)

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Daniel Brown
On Tue, Sep 30, 2008 at 11:31 AM, Nathan Rixham [EMAIL PROTECTED] wrote: seriously? subject being Wanted PHP Developers.. I'd like to know where you get the audacity to think it could possibly refer to you. We never *wanted* you here on the list, we just got *stuck* with you. ;-P

Re: [PHP] navigation / location bar

2008-09-30 Thread Stut
On 30 Sep 2008, at 16:33, Alain Roger wrote: Interesting but how to make this hierarchy ? this i do not know in PHP :-( where can i find code examples ? This depends too much on how your site is structured for me to give a useful answer. As I said in my reply If your site can't figure out

Re: [PHP] Time Loop

2008-09-30 Thread Jim Lucas
MDB wrote: Hello All, I am trying to figure out how to loop through 2 given times. I have a start time and a end time and want to look through every X mins and add a radio button. Below is my latest try, can someone please help me out? $endTime = 17:00:00;

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Jim Lucas
Nathan Rixham wrote: Jim Lucas wrote: Nathan Rixham wrote: Richard Heyes wrote: Thanks for quoting the whole message then! :P Maybe he just wanted to make sure you got it... I'm always really tight on these guy's - but it is just somebody offering us a job I guess; they could have scoured

Re: [PHP] for the sake of conversation - syntax

2008-09-30 Thread Nathan Rixham
Stut wrote: On 30 Sep 2008, at 14:00, Nathan Rixham wrote: Stut wrote: On 29 Sep 2008, at 12:47, Nathan Rixham wrote: import com.anotherdom.MysqlDbHandler as DbHandlerA; import com.somedom.DbHandler as DbHandlerB; # as makes this easier import com.mydom.thatpackage.RssParser; # we don't have

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Daniel Brown
On Tue, Sep 30, 2008 at 11:57 AM, Jim Lucas [EMAIL PROTECTED] wrote: I hate it when I have to explain the jokes... Aww, poor Jim. ;-P I got it. I'm surprised Nate didn't. -- /Daniel P. Brown More full-root dedicated server packages: Intel 2.4GHz/60GB/512MB/2TB $49.99/mo. Intel

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Nathan Rixham
Jim Lucas wrote: Nathan Rixham wrote: Jim Lucas wrote: Nathan Rixham wrote: Richard Heyes wrote: Thanks for quoting the whole message then! :P Maybe he just wanted to make sure you got it... I'm always really tight on these guy's - but it is just somebody offering us a job I guess; they

[PHP] Making $_POST and $_FILES play together nicely

2008-09-30 Thread Mike Potter
Hi, I have a PHP5 .class file that validates form inputs and sends notification emails from contact pages. Recently a client wanted to add a file upload function. No sweat, I thought. Well, I can't get the $_FILES portion to validate properly in my .class file, since it apparently only registers

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Wolf
Nathan Rixham [EMAIL PROTECTED] wrote: Jim Lucas wrote: Nathan Rixham wrote: Jim Lucas wrote: Nathan Rixham wrote: Richard Heyes wrote: Thanks for quoting the whole message then! :P Maybe he just wanted to make sure you got it... !-- SNIP -- I just wish you guys would stop

Re: [PHP] for the sake of conversation - syntax

2008-09-30 Thread Stut
On 30 Sep 2008, at 16:57, Nathan Rixham wrote: Stut wrote: On 30 Sep 2008, at 14:00, Nathan Rixham wrote: Stut wrote: On 29 Sep 2008, at 12:47, Nathan Rixham wrote: import com.anotherdom.MysqlDbHandler as DbHandlerA; import com.somedom.DbHandler as DbHandlerB; # as makes this easier

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Jim Lucas
Wolf wrote: Nathan Rixham [EMAIL PROTECTED] wrote: Jim Lucas wrote: Nathan Rixham wrote: Jim Lucas wrote: Nathan Rixham wrote: Richard Heyes wrote: Thanks for quoting the whole message then! :P Maybe he just wanted to make sure you got it... !-- SNIP -- I just wish you guys

[PHP] Digital signature

2008-09-30 Thread Balasubramanyam A
Hello, Is it possible to digitally signature on PHP document using PHP? Balu

RE: [PHP] Digital signature

2008-09-30 Thread Boyd, Todd M.
-Original Message- From: Balasubramanyam A [mailto:[EMAIL PROTECTED] Is it possible to digitally signature on PHP document using PHP? S. T. F. W. http://www.pgpi.org/ That should at least get you started. Todd Boyd Web Programmer -- PHP General Mailing List

Re: [PHP] db_* = pg_*/my_*/ifx_* ?

2008-09-30 Thread Nilesh Govindrajan
On Saturday 27 September 2008 10:01:51 pm Michelle Konzack wrote: Hello, I am using some crapy software, which does not allow switching the Database, where I use PostgreSQL since 1999 and those crapy software force me to install mysql, sqlite and other databases which let the

Re: [PHP] for the sake of conversation - syntax

2008-09-30 Thread Nathan Rixham
Stut wrote: On 30 Sep 2008, at 16:57, Nathan Rixham wrote: Stut wrote: On 30 Sep 2008, at 14:00, Nathan Rixham wrote: Stut wrote: On 29 Sep 2008, at 12:47, Nathan Rixham wrote: import com.anotherdom.MysqlDbHandler as DbHandlerA; import com.somedom.DbHandler as DbHandlerB; # as makes this

Re: [PHP] db_* = pg_*/my_*/ifx_* ?

2008-09-30 Thread uaca man
nathan, if you are not going to help, DONĀ“T answer. Michelle, there are many options, a few are available at pear.php.net, take a look at the pear MDB2 package it is probably what you want. Angelo 2008/9/27 Michelle Konzack [EMAIL PROTECTED]: Hello, I am using some crapy software, which

Re: [PHP] Making $_POST and $_FILES play together nicely

2008-09-30 Thread Nilesh Govindrajan
On Tuesday 30 September 2008 09:41:33 pm Mike Potter wrote: Hi, I have a PHP5 .class file that validates form inputs and sends notification emails from contact pages. Recently a client wanted to add a file upload function. No sweat, I thought. Well, I can't get the $_FILES portion to

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Jason Pruim
On Sep 30, 2008, at 12:31 PM, Jim Lucas wrote: Wolf wrote: Nathan Rixham [EMAIL PROTECTED] wrote: Jim Lucas wrote: Nathan Rixham wrote: Jim Lucas wrote: Nathan Rixham wrote: Richard Heyes wrote: Thanks for quoting the whole message then! :P Maybe he just wanted to make sure you

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Wolf
!-- SNIP -- *Lightbulb*... I could make money *snatches lightbulb down and replaces it with burned out one* Must resist fist of death :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread VamVan
Job Description is awesome though. My first instinct was to jump in to it right away. But there are some red flags as their website looks too immature. Hard to believe !!! On Tue, Sep 30, 2008 at 9:47 AM, Jason Pruim [EMAIL PROTECTED] wrote: On Sep 30, 2008, at 12:31 PM, Jim Lucas wrote:

RE: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Jay Blanchard
[snip] Must resist fist of death [/snip] Props for the Dilbert reference -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Zend_Form: How to change positions of elements ?

2008-09-30 Thread Thodoris
Hi, I am new to Zend Framework. I would like to know how to change the positions of elements created using Zend_Form. I mean that how do I place two elements one near other instead of in a top-down manner ? Since I am also new to Zend Framework and I am having the same

Re: [PHP] Name of graph

2008-09-30 Thread tedd
At 4:29 PM +0100 9/30/08, Richard Heyes wrote: BTW -- What is it with you and graphs? Are you creating a library for charting? Created: http://www.phpguru.org/RGraph -- Richard Heyes Far out -- that's neat. Cheers, tedd -- --- http://sperling.com http://ancientstones.com

Re: [PHP] Time Loop

2008-09-30 Thread MDB
Thank you, I will try that out. Robert Cummings [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Mon, 2008-09-29 at 17:01 -0400, MDB wrote: Hello All, I am trying to figure out how to loop through 2 given times. I have a start time and a end time and want to look through every X

[PHP] Re: Zend_Form: How to change positions of elements ?

2008-09-30 Thread Colin Guthrie
Thodoris wrote: Since I am also new to Zend Framework and I am having the same difficulties with Zend_Form I am asking you to suggest the proper mail list. The php-general mailing list is a general purpose mailing list and should be used for general purpose How do I do this in PHP? or What

Re: [PHP] navigation / location bar

2008-09-30 Thread tedd
At 4:27 PM +0100 9/30/08, Stut wrote: As examples check out the following pages (under the orange bar)... http://uk.freeads.net/ Stut: I can understand: Travel Holidays Because the user moves to the Holidays page from the Travel page. In fact, there's no way to get to the Holidays page

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread tedd
At 7:49 AM -0700 9/30/08, Jim Lucas wrote: Why do you think they are looking for a programmer... Because they ran out of people who can really screw things up. Cheers, tedd -- --- http://sperling.com http://ancientstones.com http://earthstones.com -- PHP General Mailing List

Re: [PHP] Re: Zend_Form: How to change positions of elements ?

2008-09-30 Thread Thodoris
Thodoris wrote: Since I am also new to Zend Framework and I am having the same difficulties with Zend_Form I am asking you to suggest the proper mail list. The php-general mailing list is a general purpose mailing list and should be used for general purpose How do I do this in PHP? or What

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread tedd
At 9:51 AM -0700 9/30/08, VamVan wrote: Job Description is awesome though. My first instinct was to jump in to it right away. But there are some red flags as their website looks too immature. Hard to believe !!! That's my instinct as well. If a company is advertising for web programmers and

Re: [PHP] Re: Questions regarding limits of processes launched by system, exec,passthru ...

2008-09-30 Thread Thodoris
Hello all again, It seems that Problem can only be solved by one of the following ways: 1. Don't use mod_php; use CGI or FastCGI instead. Then it would be possible to limit the resources via RLimitCPU / RLimitMEM. I haven't tried that but as I have noticed in the reference that

Re: [PHP] for the sake of conversation - syntax

2008-09-30 Thread tedd
At 3:36 PM +0100 9/30/08, Stut wrote: There was a cracking suggestion a week or so ago that the $ prefix for variables should be removed. Can you imagine the community backlash at such a pointless change!! -Stut Well... there's always one. I try hard not to be it. :-) I just learned the

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Daniel Brown
On Tue, Sep 30, 2008 at 1:34 PM, tedd [EMAIL PROTECTED] wrote: At 9:51 AM -0700 9/30/08, VamVan wrote: Job Description is awesome though. My first instinct was to jump in to it right away. But there are some red flags as their website looks too immature. Hard to believe !!! That's my

Re: [PHP] Digital signature

2008-09-30 Thread Balasubramanyam A
Hello Todd, Sorry about the typo error in my previous email. My question is, how to digitally sign on PDF document using PHP? I searched web, but could not get more information on this topic. Could you please give me an example on how to digitally sign on PDF document using PHP? Balu On

[PHP] Sterilizing regexp

2008-09-30 Thread Frank Stanovcak
A while ago I asked a question and got a few answers, so I thought I would toss this out there as a follow up. I'm going to be using this to return filtered regexp values for a user interface. I haven't had a chance to enter this into my code yet, so if anyone sees something wrong please

Re: [PHP] Sepating MySQL result set into html tables

2008-09-30 Thread Thodoris
At 8:32 PM +0300 9/26/08, Thodoris wrote: Yes it will but I will make this better along with other things as long as I find the needed algorithm. -- Thodoris http://webbytedd.com/bbb/paging/ The code is there. Cheers, tedd Thanks Tedd this does the paging but it wasn't what I asked

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Robert Cummings
On Tue, 2008-09-30 at 13:34 -0400, tedd wrote: At 9:51 AM -0700 9/30/08, VamVan wrote: Job Description is awesome though. My first instinct was to jump in to it right away. But there are some red flags as their website looks too immature. Hard to believe !!! That's my instinct as well.

Re: [PHP] Sterilizing regexp

2008-09-30 Thread Per Jessen
Frank Stanovcak wrote: A while ago I asked a question and got a few answers, so I thought I would toss this out there as a follow up. I'm going to be using this to return filtered regexp values for a user interface. I haven't had a chance to enter this into my code yet, so if anyone sees

[PHP] Robert Cummings

2008-09-30 Thread Daniel Brown
All: What was pointed as a passing mention in one thread I thought was worth note in a thread of its own. As quoted by Rob: BTW, while we're off topic... my wife delivered our third child (second boy) 3 minutes after midnight yesterday :) I'd say that deserves a round of

Re: [PHP] Robert Cummings

2008-09-30 Thread Wolf
Daniel Brown [EMAIL PROTECTED] wrote: All: What was pointed as a passing mention in one thread I thought was worth note in a thread of its own. As quoted by Rob: BTW, while we're off topic... my wife delivered our third child (second boy) 3 minutes after midnight

RE: [PHP] Robert Cummings

2008-09-30 Thread Jay Blanchard
[snip] [/snip] Congrats Cummings Clan! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Robert Cummings

2008-09-30 Thread Dan Joseph
On Tue, Sep 30, 2008 at 2:12 PM, Daniel Brown [EMAIL PROTECTED] wrote: I'd say that deserves a round of congratulations. Many - most, Congratulations! May he grown strong and bring you honor! -- -Dan Joseph www.canishosting.com - Plans start @ $1.99/month. Build a man a fire, and he

RE: [PHP] Digital signature

2008-09-30 Thread Boyd, Todd M.
From: Balasubramanyam A [mailto:[EMAIL PROTECTED] Hello Todd, Sorry about the typo error in my previous email. My question is, how to digitally sign on PDF document using PHP? I searched web, but could not get more information on this topic. Could you please give me an example on how to

Re: [PHP] Robert Cummings

2008-09-30 Thread Steve Holmes
On Tue, Sep 30, 2008 at 2:12 PM, Daniel Brown [EMAIL PROTECTED] wrote: All: What was pointed as a passing mention in one thread I thought was worth note in a thread of its own. As quoted by Rob: BTW, while we're off topic... my wife delivered our third child (second boy) 3 minutes

RE: [PHP] Sterilizing regexp

2008-09-30 Thread Boyd, Todd M.
-Original Message- From: Frank Stanovcak [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2008 12:45 PM To: php-general@lists.php.net Subject: [PHP] Sterilizing regexp A while ago I asked a question and got a few answers, so I thought I would toss this out there as a follow

Re: [PHP] Sterilizing regexp

2008-09-30 Thread Frank Stanovcak
I've got to pass about 9 or 10 calls to it, some of which will be arrays, and I have to do it from several different places. Felt this was a bit more elegant than hard coding the pregmatches unless there is an easier way. Per Jessen [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]

Re: [PHP] Robert Cummings

2008-09-30 Thread Thiago H. Pojda
On Tue, Sep 30, 2008 at 3:12 PM, Daniel Brown [EMAIL PROTECTED] wrote: All: What was pointed as a passing mention in one thread I thought was worth note in a thread of its own. As quoted by Rob: BTW, while we're off topic... my wife delivered our third child (second boy) 3

Re: [PHP] Sterilizing regexp

2008-09-30 Thread Jim Lucas
Frank Stanovcak wrote: A while ago I asked a question and got a few answers, so I thought I would toss this out there as a follow up. I'm going to be using this to return filtered regexp values for a user interface. I haven't had a chance to enter this into my code yet, so if anyone sees

[PHP] Re: Zend_Form: How to change positions of elements ?

2008-09-30 Thread Colin Guthrie
Thodoris wrote: The php-general mailing list is read by many experienced and friendly PHP developers, but only a percentage of them will know anything about the Zend Framework. That is true but still there is this percentage that exists. In case you need help you ask and everyone that can

Re: [PHP] Robert Cummings

2008-09-30 Thread Jason Pruim
On Sep 30, 2008, at 2:41 PM, Thiago H. Pojda wrote: On Tue, Sep 30, 2008 at 3:12 PM, Daniel Brown [EMAIL PROTECTED] wrote: All: What was pointed as a passing mention in one thread I thought was worth note in a thread of its own. As quoted by Rob: BTW, while we're off topic... my

Re: [PHP] db_* = pg_*/my_*/ifx_* ?

2008-09-30 Thread Ashley Sheridan
On Sat, 2008-09-27 at 18:31 +0200, Michelle Konzack wrote: Hello, I am using some crapy software, which does not allow switching the Database, where I use PostgreSQL since 1999 and those crapy software force me to install mysql, sqlite and other databases which let the

[PHP] Re: Robert Cummings

2008-09-30 Thread Colin Guthrie
Daniel Brown wrote: All: What was pointed as a passing mention in one thread I thought was worth note in a thread of its own. As quoted by Rob: BTW, while we're off topic... my wife delivered our third child (second boy) 3 minutes after midnight yesterday :) Ahh indeed. Congrats to

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Ashley Sheridan
On Tue, 2008-09-30 at 13:25 -0400, tedd wrote: At 7:49 AM -0700 9/30/08, Jim Lucas wrote: Why do you think they are looking for a programmer... Because they ran out of people who can really screw things up. Cheers, tedd -- --- http://sperling.com http://ancientstones.com

Re: [PHP] Robert Cummings

2008-09-30 Thread Afan Pasalic
Daniel Brown wrote: All: What was pointed as a passing mention in one thread I thought was worth note in a thread of its own. As quoted by Rob: BTW, while we're off topic... my wife delivered our third child (second boy) 3 minutes after midnight yesterday :) I'd say

Re: [PHP] Name of graph

2008-09-30 Thread Richard Heyes
You can call [it] Susan if it makes you happy. - Snatch Sorry, I had to! Sorry, not seen (the film?) Snatch. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Name of graph

2008-09-30 Thread Ashley Sheridan
On Tue, 2008-09-30 at 20:09 +0100, Richard Heyes wrote: You can call [it] Susan if it makes you happy. - Snatch Sorry, I had to! Sorry, not seen (the film?) Snatch. I really recommend it. It's one of Guy Ritchies films before Madonna got involved and started messing his films up for

Re: [PHP] Robert Cummings

2008-09-30 Thread Stut
On 30 Sep 2008, at 19:12, Daniel Brown wrote: What was pointed as a passing mention in one thread I thought was worth note in a thread of its own. As quoted by Rob: BTW, while we're off topic... my wife delivered our third child (second boy) 3 minutes after midnight yesterday :) I'd

Re: [PHP] Name of graph

2008-09-30 Thread Ashley Sheridan
On Tue, 2008-09-30 at 09:53 +0100, Richard Heyes wrote: Hi, Anyone know what the line in the first bar chart is called? I call it a summary line, but that's wrong. ISTR it being referred to something that involved the word frequency, but I may be off my trolley... You'll need a browser

Re: [PHP] for the sake of conversation - syntax

2008-09-30 Thread Stut
On 30 Sep 2008, at 17:40, Nathan Rixham wrote: Stut wrote: Consider this... file1.php: package arse { class bandit { ... } } package nipple { class clamp { ... } } file2.php: import file1 as chest; Which package have I aliased as chest in file2.php? This could be

Re: [PHP] navigation / location bar

2008-09-30 Thread Stut
On 30 Sep 2008, at 18:23, tedd wrote: At 4:27 PM +0100 9/30/08, Stut wrote: As examples check out the following pages (under the orange bar)... http://uk.freeads.net/ Stut: I can understand: Travel Holidays Because the user moves to the Holidays page from the Travel page. In fact,

Re: [PHP] navigation / location bar

2008-09-30 Thread mike
Also remember there are two styles of breadcrumbs: those which follow you around the site and create a path of your previous pages (like a true breadcrumb) or the more standard path-back-to-home hierarchial style. It doesnt make much sense to recreate the browsers back button functionality

Re: [PHP] navigation / location bar

2008-09-30 Thread Eric Butera
On Tue, Sep 30, 2008 at 3:54 PM, mike [EMAIL PROTECTED] wrote: Also remember there are two styles of breadcrumbs: those which follow you around the site and create a path of your previous pages (like a true breadcrumb) or the more standard path-back-to-home hierarchial style. It doesnt make

Re: [PHP] Robert Cummings

2008-09-30 Thread Eric Butera
Congrats! Hope you saved up on your sleep. :D -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] navigation / location bar

2008-09-30 Thread mike
On Tue, Sep 30, 2008 at 1:07 PM, Eric Butera [EMAIL PROTECTED] wrote: Don't forget people share links and find sites through lots of random ways. It's nice to have such things. Oh yes, I am moreso for the back to home style myself. A deep link won't benefit from the this is how you got here

Re: [PHP] Robert Cummings

2008-09-30 Thread Jochem Maas
Daniel Brown schreef: All: What was pointed as a passing mention in one thread I thought was worth note in a thread of its own. As quoted by Rob: BTW, while we're off topic... my wife delivered our third child (second boy) 3 minutes after midnight yesterday :) I'd say that

Re: [PHP] Robert Cummings

2008-09-30 Thread tedd
At 2:12 PM -0400 9/30/08, Daniel Brown wrote: All: What was pointed as a passing mention in one thread I thought was worth note in a thread of its own. As quoted by Rob: BTW, while we're off topic... my wife delivered our third child (second boy) 3 minutes after midnight

Re: [PHP] Robert Cummings

2008-09-30 Thread tedd
At 11:14 PM +0200 9/30/08, Jochem Maas wrote: I figure I'd pass on a rubber doll joke, that would just be disrespectful to Rob's wife ... and she has to put up with him alot more than we do ;-) Oopps, I just sent mine. Cheers, tedd -- --- http://sperling.com http://ancientstones.com

Re: [PHP] Sepating MySQL result set into html tables

2008-09-30 Thread tedd
At 8:46 PM +0300 9/30/08, Thodoris wrote: At 8:32 PM +0300 9/26/08, Thodoris wrote: Yes it will but I will make this better along with other things as long as I find the needed algorithm. -- Thodoris http://webbytedd.com/bbb/paging/ The code is there. Cheers, tedd Thanks Tedd this

Re: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread tedd
At 1:44 PM -0400 9/30/08, Daniel Brown wrote: On Tue, Sep 30, 2008 at 1:34 PM, tedd [EMAIL PROTECTED] wrote: At 9:51 AM -0700 9/30/08, VamVan wrote: Job Description is awesome though. My first instinct was to jump in to it right away. But there are some red flags as their website looks too

  1   2   >