php-general Digest 19 Mar 2009 10:01:31 -0000 Issue 6020

2009-03-19 Thread php-general-digest-help
php-general Digest 19 Mar 2009 10:01:31 - Issue 6020 Topics (messages 290261 through 290265): Re: Default field 290261 by: Bastien Koert Re: Anyone know of a project like Redmine written in PHP? 290262 by: Shawn McKenzie Re: Calendar/Date 290263 by: Hans Åhlin

Re: [PHP] Form to pdf

2009-03-19 Thread tedd
At 10:17 AM -0400 3/18/09, Gary wrote: I'm going to frame that and call my ma Can you direct me to how I can learn that? Thanks for your help. Gary Sperling Institute of Technology Honoree Gary: This: http://webbytedd.com/bb/pdf/ was produced from this: http://chir.ag/projects/pdfb/

Re: [PHP] Default field

2009-03-19 Thread tedd
At 4:58 PM -0400 3/18/09, Bastien Koert wrote: On Wed, Mar 18, 2009 at 4:18 PM, Paul M Foster pa...@quillandmouse.comwrote: Slightly OT, but here's the question. Normally when a form paints, the cursor isn't in any particular field. If you want to have the cursor show up in a particular

Re: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Virgilio Quilario
That looks nice, but how do I get to the point where I can understand how to use it? I have also looked at the Smarty site http://www.smarty.net/, but their documents assume significant experience in building and using templates. Where can I find guidance or tutorials on how to do all of

Re: [PHP] Dynamic Form 'on The Fly'

2009-03-19 Thread tedd
At 12:12 PM -0700 3/18/09, revDAVE wrote: -snip Q: ANY Ideas? It may look odd, but trash all the count stuff and try this: HTML: input name=go[] type=text value= size=5 maxlength=5 / PHP: foreach ($_POST['go'] as $a) { echo $a; } Cheers, tedd -- --- http://sperling.com

Re: [PHP] Looking for a configurable Flash or PHP Live Chat Box or Shout Box With Rooms Optional

2009-03-19 Thread tedd
At 2:20 PM -0600 3/18/09, TS wrote: Does anyone have a good link to something like this for reasonable price or free? Configurable meaning skinnable and sizeable? Something Ajaxy would be cool but it would need to save state like the facebook IM feature on their site. Thanks, T First item

Re: [PHP] Looking for a configurable Flash or PHP Live Chat Box or Shout Box With Rooms Optional

2009-03-19 Thread Virgilio Quilario
Does anyone have a good link to something like this for reasonable price or free? Configurable meaning skinnable and sizeable? Something Ajaxy would be cool but it would need to save state like the facebook IM feature on their site. Thanks, T here is a good list of free scripts

Re: [PHP] Form to pdf

2009-03-19 Thread Gary
tedd Thanks much for your help! Gary tedd tedd.sperl...@gmail.com wrote in message news:p06240802c5e7f16c6...@[192.168.1.101]... At 10:17 AM -0400 3/18/09, Gary wrote: I'm going to frame that and call my ma Can you direct me to how I can learn that? Thanks for your help. Gary

[PHP] Problems with exec() on windows

2009-03-19 Thread Kyohere Luke
Hi, I'm trying to use exec to call gammu.exe and send sms on windows XP. This works from commandline: C:\path\to\gammu.exe 1 --sendsms EMS 200 -text test1 test2 But if I run it through php like this: $command = \C:\path\to\gammu.exe\ --sendsms EMS 200 -text \test1 test2\.; @exec($command,

Re: [PHP] Problems with exec() on windows

2009-03-19 Thread haliphax
On Thu, Mar 19, 2009 at 9:19 AM, Kyohere Luke pr0...@gmail.com wrote: Hi, I'm trying to use exec to call gammu.exe and send sms on windows XP. This works from commandline: C:\path\to\gammu.exe 1 --sendsms EMS 200 -text test1 test2 But if I run it through php like this: $command =

Re: [PHP] Problems with exec() on windows

2009-03-19 Thread haliphax
On Thu, Mar 19, 2009 at 9:25 AM, haliphax halip...@gmail.com wrote: On Thu, Mar 19, 2009 at 9:19 AM, Kyohere Luke pr0...@gmail.com wrote: Hi, I'm trying to use exec to call gammu.exe and send sms on windows XP. This works from commandline: C:\path\to\gammu.exe 1 --sendsms EMS 200 -text

Re: [PHP] PHP Site Security issue

2009-03-19 Thread Dotan Cohen
Someone hacked your server. Report it to the server admin. -- Dotan Cohen http://what-is-what.com http://gibberish.co.il א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת ا-ب-ت-ث-ج-ح-خ-د-ذ-ر-ز-س-ش-ص-ض-ط-ظ-ع-غ-ف-ق-ك-ل-م-ن-ه‍-و-ي

Re: [PHP] PHP Site Security issue

2009-03-19 Thread Dotan Cohen
...and get it off of GoDaddy's servers. They are notorious for problems! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Site Security issue

2009-03-19 Thread דניאל דנון
I think its rather someone hacked into his computer, Oh, I misuse the word hack. Its a famous way virus spread. Everytime you log into your FTP they change it, its probably a virus on your computer since I do not believe someone hacked into GoDaddy server

Re: [PHP] PHP Site Security issue

2009-03-19 Thread Jochem Maas
Dotan Cohen schreef: Someone hacked your server. Report it to the server admin. more likely that someone hacked the site, i.e. the site has some insecure stuff in it that's allowing code to be uploaded and run. I would suspect that as more likely than the server itself being hacked.

RE: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Bob McConnell
From: Virgilio Quilario That looks nice, but how do I get to the point where I can understand how to use it? I have also looked at the Smarty site http://www.smarty.net/, but their documents assume significant experience in building and using templates. Where can I find guidance or

[PHP] Re: Problems with exec() on windows

2009-03-19 Thread Shawn McKenzie
Kyohere Luke wrote: Hi, I'm trying to use exec to call gammu.exe and send sms on windows XP. This works from commandline: C:\path\to\gammu.exe 1 --sendsms EMS 200 -text test1 test2 But if I run it through php like this: $command = \C:\path\to\gammu.exe\ --sendsms EMS 200 -text \test1

Re: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Bastien Koert
On Thu, Mar 19, 2009 at 11:06 AM, Bob McConnell r...@cbord.com wrote: From: Virgilio Quilario That looks nice, but how do I get to the point where I can understand how to use it? I have also looked at the Smarty site http://www.smarty.net/, but their documents assume significant

RE: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Marc Christopher Hall
://www.php.net/unsub.php __ Information from ESET Smart Security, version of virus signature database 3948 (20090319) __ The message was checked by ESET Smart Security. http://www.eset.com __ Information from ESET Smart Security, version of virus signature database 3948

[PHP] Re: Conclusion of use strict...

2009-03-19 Thread Hans Schultz
If someone is still interested in problem I found litle tool that is pretty close to detecting errors in PHP at compile time (compile time rghhh :P). It is Codenizer (http://www.softwarehood.com/Codenizer/), I am still checking it, if someone uses it it would be nice to share

RE: [PHP] PHP Site Security issue

2009-03-19 Thread Marc Christopher Hall
ESET Smart Security, version of virus signature database 3948 (20090319) __ The message was checked by ESET Smart Security. http://www.eset.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] dynamicaly append method to class - workaround for aggregate_methods()

2009-03-19 Thread Karel Kozlik
Hello list! I am using in my application dynamic method appending to class with aggregate_methods() function. But this function is no more aviable in php5 and runkit extension seems not to be maintained any more. So I would like to replace it with something more common (__call method or so).

RE: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Bob McConnell
From: Bastien Koert On Thu, Mar 19, 2009 at 11:06 AM, Bob McConnell r...@cbord.com wrote: From: Virgilio Quilario That looks nice, but how do I get to the point where I can understand how to use it? I have also looked at the Smarty site

RE: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Bob McConnell
From: Shawn McKenzie Bob McConnell wrote: From: Virgilio Quilario That looks nice, but how do I get to the point where I can understand how to use it? I have also looked at the Smarty site http://www.smarty.net/, but their documents assume significant experience in building and using

Re: [PHP] Re: Problems with exec() on windows

2009-03-19 Thread Kyohere Luke
Thanks, but I tried this. Doesn't work because the path\to\gammu.exe has spaces in it Haliphax, thanks for your comments. I tried escapeshellarg() to no end. I'm exploring your reply regarding proc_open, but how exactly does proc_open separate the arguments from the command? Unless i'm

Re: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Shawn McKenzie
Bob McConnell wrote: From: Virgilio Quilario That looks nice, but how do I get to the point where I can understand how to use it? I have also looked at the Smarty site http://www.smarty.net/, but their documents assume significant experience in building and using templates. Where can I

Re: [PHP] Re: Problems with exec() on windows

2009-03-19 Thread Kyohere Luke
Thanks, but I tried this. Doesn't work because the path\to\gammu.exe has spaces in it Haliphax, thanks for your comments. I tried escapeshellarg() to no end. I'm exploring your reply regarding proc_open, but how exactly does proc_open separate the arguments from the command? Unless i'm

RE: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Robert Cummings
On Thu, 2009-03-19 at 12:14 -0400, Bob McConnell wrote: From: Bastien Koert On Thu, Mar 19, 2009 at 11:06 AM, Bob McConnell r...@cbord.com wrote: From: Virgilio Quilario That looks nice, but how do I get to the point where I can understand how to use it? I

Re: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Bastien Koert
On Thu, Mar 19, 2009 at 12:36 PM, Bob McConnell r...@cbord.com wrote: From: Shawn McKenzie Bob McConnell wrote: From: Virgilio Quilario That looks nice, but how do I get to the point where I can understand how to use it? I have also looked at the Smarty site http://www.smarty.net/,

Re: [PHP] Re: Problems with exec() on windows

2009-03-19 Thread Bastien Koert
On Thu, Mar 19, 2009 at 12:48 PM, Kyohere Luke l...@beyonic.com wrote: Thanks, but I tried this. Doesn't work because the path\to\gammu.exe has spaces in it Haliphax, thanks for your comments. I tried escapeshellarg() to no end. I'm exploring your reply regarding proc_open, but how

Re: [PHP] Re: Problems with exec() on windows

2009-03-19 Thread Kyohere Luke
Eventually settled for getting rid of the spaces in the path. That worked. Thanks. Luke On Thu, Mar 19, 2009 at 8:06 PM, Bastien Koert phps...@gmail.com wrote: On Thu, Mar 19, 2009 at 12:48 PM, Kyohere Luke l...@beyonic.com wrote: Thanks, but I tried this. Doesn't work because the

Re: [PHP] Re: Problems with exec() on windows

2009-03-19 Thread Shawn McKenzie
Kyohere Luke wrote: Thanks, but I tried this. Doesn't work because the path\to\gammu.exe has spaces in it Haliphax, thanks for your comments. I tried escapeshellarg() to no end. I'm exploring your reply regarding proc_open, but how exactly does proc_open separate the arguments from the

Re: [PHP] Re: Problems with exec() on windows

2009-03-19 Thread Kyohere Luke
Eventually settled for getting rid of the spaces in the path. That worked. Thanks. Luke On Thu, Mar 19, 2009 at 8:06 PM, Bastien Koert phps...@gmail.com wrote: On Thu, Mar 19, 2009 at 12:48 PM, Kyohere Luke l...@beyonic.com wrote: Thanks, but I tried this. Doesn't work because the

RE: [PHP] Re: Problems with exec() on windows

2009-03-19 Thread bruce
hey... if you're going to deal with file/pathnames in windows/linux.. you're going to have to encapsulate them with or with '' ie double/single quotes... -Original Message- From: Kyohere Luke [mailto:l...@beyonic.com] Sent: Thursday, March 19, 2009 10:18 AM To: Bastien Koert Cc: Shawn

Re: [PHP] Re: Problems with exec() on windows

2009-03-19 Thread Kyohere Luke
Hi, Tried all that - it'd work well until one of the arguments also had spaces and thus had or '' encapsulating it - this weirdness is the reason for this post. Shawn, even the good old C:\pathwi~1\gammu.exe failed :-( The only way I've gotten it to work was to get rid of the spaces in the

Re: [PHP] Re: Problems with exec() on windows

2009-03-19 Thread Kyohere Luke
Hi, Tried all that - it'd work well until one of the arguments also had spaces and thus had or '' encapsulating it - this weirdness is the reason for this post. Shawn, even the good old C:\pathwi~1\gammu.exe failed :-( The only way I've gotten it to work was to get rid of the spaces in the

[PHP] Array Brain Freeze

2009-03-19 Thread Dan Shirah
Hello all, I have the follwoing piece of code: //reference a stored procedure $procedure = Execute Procedure informix.arrest_char($part_id); //run the stored procedure $char_query = ifx_query($procedure, $connect_id); //get the result of the stored procedure $char_result =

Re: [PHP] Re: Problems with exec() on windows

2009-03-19 Thread Shawn McKenzie
Kyohere Luke wrote: Hi, Tried all that - it'd work well until one of the arguments also had spaces and thus had or '' encapsulating it - this weirdness is the reason for this post. Shawn, even the good old C:\pathwi~1\gammu.exe failed :-( Well, you didn't do it properly then. What is the

[PHP] Re: Array Brain Freeze

2009-03-19 Thread Dan Shirah
Hello all, I have the follwoing piece of code: //reference a stored procedure $procedure = Execute Procedure informix.arrest_char($part_id); //run the stored procedure $char_query = ifx_query($procedure, $connect_id); //get the result of the stored procedure $char_result =

RE: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Bob McConnell
From: Bastien Koert Just 162 files? I don't mean to sound condescending but if the code is that much trouble, chuck it out and start over. Not going to happen. There are too many other tasks in the backlog that are more important and will bring in real money as opposed to just making the

RE: [PHP] PHP Site Security issue

2009-03-19 Thread Ashley Sheridan
and the replies that included the message did? __ Information from ESET Smart Security, version of virus signature database 3948 (20090319) __ The message was checked by ESET Smart Security. http://www.eset.com Are you using any software that you sourced from

[PHP] Stopping bad entries in PHP form

2009-03-19 Thread sono-io
I have a PHP form that allows end users to request a sample of the products we sell. Unfortunately, a person/people have found it and are sending in bad requests. We sell only within the US, and so I've set up the form so that they must choose one of the 50 States. But we keep getting

[PHP] Re: PHP + IIS7 - 'weird stuff' with multiple sites on same server

2009-03-19 Thread Shawn McKenzie
scubak1w1 wrote: Hello, I was/am using the excellent tutorial over at http://learn.iis.net/page.aspx/246/u...ons-on-iis-70/ to get PHP5.2.9 up and running on Server '08 and IIS7. All was working well, got my site migrated across, code was working, data coming and going out of

Re: [PHP] Stopping bad entries in PHP form

2009-03-19 Thread Ashley Sheridan
On Thu, 2009-03-19 at 13:46 -0700, sono...@fannullone.us wrote: I have a PHP form that allows end users to request a sample of the products we sell. Unfortunately, a person/people have found it and are sending in bad requests. We sell only within the US, and so I've set up the

Re: [PHP] Stopping bad entries in PHP form

2009-03-19 Thread Shawn McKenzie
Ashley Sheridan wrote: On Thu, 2009-03-19 at 13:46 -0700, sono...@fannullone.us wrote: I have a PHP form that allows end users to request a sample of the products we sell. Unfortunately, a person/people have found it and are sending in bad requests. We sell only within the US, and

Re: [PHP] dynamicaly append method to class - workaround for aggregate_methods()

2009-03-19 Thread Jochem Maas
Karel Kozlik schreef: Hello list! I am using in my application dynamic method appending to class with aggregate_methods() function. But this function is no more aviable in php5 and runkit extension seems not to be maintained any more. So I would like to replace it with something more

Re: [PHP] Stopping bad entries in PHP form

2009-03-19 Thread Ashley Sheridan
On Thu, 2009-03-19 at 16:04 -0500, Shawn McKenzie wrote: Ashley Sheridan wrote: On Thu, 2009-03-19 at 13:46 -0700, sono...@fannullone.us wrote: I have a PHP form that allows end users to request a sample of the products we sell. Unfortunately, a person/people have found it and are

[PHP] PHP + IIS7 - 'weird stuff' with multiple sites on same server

2009-03-19 Thread scubak1w1
Hello, I was/am using the excellent tutorial over at http://learn.iis.net/page.aspx/246/u...ons-on-iis-70/ to get PHP5.2.9 up and running on Server '08 and IIS7. All was working well, got my site migrated across, code was working, data coming and going out of PostgreSQL in the back end, etc,

RE: [PHP] Stopping bad entries in PHP form

2009-03-19 Thread Marc Christopher Hall
Security, version of virus signature database 3949 (20090319) __ The message was checked by ESET Smart Security. http://www.eset.com __ Information from ESET Smart Security, version of virus signature database 3949 (20090319) __ The message was checked by ESET Smart

RE: [PHP] Stopping bad entries in PHP form

2009-03-19 Thread Ashley Sheridan
Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php __ Information from ESET Smart Security, version of virus signature database 3949 (20090319) __ The message was checked by ESET Smart Security. http://www.eset.com

Re: [PHP] PHP to create an ERD (sic) on the fly on a web page based on current DB records?

2009-03-19 Thread scubak1w1
haliphax halip...@gmail.com wrote in message news:952625160903130637q40fcd2a9pc662d51979d58...@mail.gmail.com... On Thu, Mar 12, 2009 at 7:47 PM, scubak1w1 sk...@spamcop.net wrote: Hello, Seeking some advice on how to create an ERD (sic) graphically on the page on the fly when the page is

[PHP] Re: PHP to create an ERD (sic) on the fly on a web page based on current DB records?

2009-03-19 Thread scubak1w1
Ross McKay ro...@zeta.org.au wrote in message news:3l4kr4dp3hta7o1poi4bbsl0eqdmp0d...@4ax.com... On Thu, 12 Mar 2009 18:47:40 -0600, scubak1w1 wrote: Seeking some advice on how to create an ERD (sic) graphically on the page on the fly when the page is 'called'... [...] Maybe GraphViz?

[PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-19 Thread scubak1w1
Micah Gersten news.php@micahscomputing.com wrote in message news:3e.68.30999.cd50a...@pb1.pair.com... scubak1w1 wrote: Hello, Banging my head against this one... Briefly: - I have two forms on the same page - both forms are: action=?php print $_SERVER['PHP_SELF']; ? method=post

Re: [PHP] Re: 2 forms, same page, 1st is file upload - works inIE, 'dies' in non-IE browsers

2009-03-19 Thread scubak1w1
Ashley Sheridan a...@ashleysheridan.co.uk wrote in message news:1236930396.3525.4.ca...@localhost.localdomain... On Fri, 2009-03-13 at 02:06 -0500, Micah Gersten wrote: scubak1w1 wrote: Hello, Banging my head against this one... Briefly: - I have two forms on the same page -

[PHP] Re: PHP + IIS7 - 'weird stuff' with multiple sites on same server

2009-03-19 Thread scubak1w1
Shawn McKenzie nos...@mckenzies.net wrote in message news:b8.7e.55398.e12b2...@pb1.pair.com... scubak1w1 wrote: Hello, I was/am using the excellent tutorial over at http://learn.iis.net/page.aspx/246/u...ons-on-iis-70/ to get PHP5.2.9 up and running on Server '08 and IIS7. All was

[PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-19 Thread scubak1w1
Ross McKay ro...@zeta.org.au wrote in message news:lv4kr4psfniltjns3p914aj4s7s6nna...@4ax.com... On Thu, 12 Mar 2009 18:39:38 -0600, scubak1w1 wrote: [...] In the non-IE browsers I have tried (Firefox, Chrome, Opera), the first form uploads the file properly, the 2nd form's submit is 'turned

Re: [PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-19 Thread scubak1w1
haliphax halip...@gmail.com wrote in message news:952625160903130640l7c1a2f0bh8af2b6ffc447b...@mail.gmail.com... On Fri, Mar 13, 2009 at 3:18 AM, 9el le...@phpxperts.net wrote: It sounds like a script error rather than a PHP error. Use Firebug which will show you the HTML as it is updated by

[PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-19 Thread Ross McKay
On Thu, 19 Mar 2009 16:27:38 -0600, scubak1w1 wrote: I have it set in a div tag and use AJAX... When it is 'off' (i..e, when the page first opens) it is simply a grayed out image with a 'tool tip' to indicate it is not functional... Once the array key exists for the first form, I have (sic)

Re: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Michael A. Peters
Marc Christopher Hall wrote: The following comment is not intended to be helpful *smacks head on desk repeatedly...* This comment is.. I would hazard to say that if you are unwilling or unable to grasp OOP, MVCs and any decent framework that is necessary then maybe stepping back and

Re: [PHP] Re: Problems with exec() on windows

2009-03-19 Thread Frank Stanovcak
Kyohere Luke l...@beyonic.com wrote in message news:9bc423c50903191018k3c783213l4929cf2878e98...@mail.gmail.com... Eventually settled for getting rid of the spaces in the path. That worked. Thanks. Luke On Thu, Mar 19, 2009 at 8:06 PM, Bastien Koert phps...@gmail.com wrote: On Thu, Mar

Re: [PHP] Stopping bad entries in PHP form

2009-03-19 Thread Frank Stanovcak
the country they appear to be visiting from? Ash www.ashleysheridan.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php __ Information from ESET Smart Security, version of virus signature database 3949 (20090319

Re: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Robert Cummings
On Thu, 2009-03-19 at 16:27 -0700, Michael A. Peters wrote: Marc Christopher Hall wrote: The following comment is not intended to be helpful *smacks head on desk repeatedly...* This comment is.. I would hazard to say that if you are unwilling or unable to grasp OOP, MVCs

[PHP] Looking for PHP alternatives to mailman

2009-03-19 Thread mike
Or I suppose ANY alternatives. There is Sympa, which seems to have an even worse reputation than mailman to configure, and the last two seemed to have died for the most part and have been taken over by mailman...? Majordomo was last updated in 2000. ezmlm Listserv is commercial with a pretty

Re: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Michael A. Peters
Robert Cummings wrote: On Thu, 2009-03-19 at 16:27 -0700, Michael A. Peters wrote: Marc Christopher Hall wrote: The following comment is not intended to be helpful *smacks head on desk repeatedly...* This comment is.. I would hazard to say that if you are unwilling or unable to grasp

Re: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Robert Cummings
On Thu, 2009-03-19 at 18:05 -0700, Michael A. Peters wrote: Robert Cummings wrote: On Thu, 2009-03-19 at 16:27 -0700, Michael A. Peters wrote: Marc Christopher Hall wrote: The following comment is not intended to be helpful *smacks head on desk repeatedly...* This comment is..

Re: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Michael A. Peters
Robert Cummings wrote: On Thu, 2009-03-19 at 18:05 -0700, Michael A. Peters wrote: Robert Cummings wrote: On Thu, 2009-03-19 at 16:27 -0700, Michael A. Peters wrote: Marc Christopher Hall wrote: The following comment is not intended to be helpful *smacks head on desk repeatedly...*

RE: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Bob McConnell
From: Robert Cummings On Thu, 2009-03-19 at 12:14 -0400, Bob McConnell wrote: From: Bastien Koert On Thu, Mar 19, 2009 at 11:06 AM, Bob McConnell r...@cbord.com wrote: From: Virgilio Quilario Most discussion clipped for brevity // OOP class DbFireman extends DbPerson {

Re: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Michael A. Peters
Bob McConnell wrote: But defining objects and then figuring out how to create and use them completely escapes me. My mind simply won't map a problem into objects, it only sees procedures. Even when I look at classes, they resolve only as loose groupings of functions and variables, not as

Re: [PHP] Smarty Tips and Techniques

2009-03-19 Thread Bipin Upadhyay
Bob McConnell wrote: [SNIPPED] the fireman. Going futher, using OOP let's you do all sorts of generic Hi Rob, Unfortunately, you still don't understand the problem I have. While it takes a while to puzzle out the details, I don't have any trouble reading, understanding or debugging