Re: [PHP] How to implement a plugin system?

2007-08-06 Thread Matt Zandstra
You might want to take a look at stickleback: http://sourceforge.net/projects/stickleback Documentation is very thin on the ground right now, but there's a presentation here: http://www.appulsus.com/resources/stickpres200706/img0.html mz On Mon, 6 Aug 2007, Hamza Saglam wrote: Hello Boro,

Re: [PHP] Another hand wringer

2007-02-18 Thread Matt Zandstra
Looks to me as if you're treating $flen as an array in one place and as a value in another: String here: $flen = $_POST['flen'];// length of text field group, shows to be the Array here: for($i = 0; $i < count($flen); $i++) Remove the count() and you'll probably get what you

Re: [PHP] PHP form not working

2005-07-28 Thread Matt Zandstra
Pasting your page onto my server and commenting out your includes the following lines stand out: $email_err ="Please enter your email address!"; $message_err = "Please enter a message!"; You have quotes within quotes here. You should either escape the inner quotes or use single quotes to defin

Re: [PHP] Re: recommending a PHP book?

2005-03-15 Thread Matt Zandstra
As the author, I'm precluded from _recommending_ my book 'PHP 5 Objects Patterns and Practice'. Nevertheless it does cover design patterns in general and enterprise patterns in particular, so it's relevant to the thread. http://www.amazon.com/exec/obidos/tg/detail/-/1590593804 It's worth taking