[PHP] NuSOAP assistance.

2008-06-08 Thread Dan Joseph
Hi Everyone, This is kind of a follow up to my SOAP question on Friday. I have decided that NuSOAP is my quickest solution. I am having some issues though. Everything looks like I have it in place, but I must be doing something wrong since the WSDL won't work right. Wondering if someone could

[PHP] Re: Choosing PHP or ? for building an automatic photo web.

2008-06-08 Thread Dan
To answer your question peter, yes. This is exactly the type of thing that PHP will work for. Password protection is a very common feature, you can implement it either using PHP, or with htaccess, I recomend the ladder just because there's a standard simple way to do it (assuming your host le

Re: [PHP] Choosing PHP or ? for building an automatic photo web.

2008-06-08 Thread Stut
Please copy replies to the list. On 8 Jun 2008, at 22:47, Nordstjernealle 10 wrote: Thanks Stut I have looked at Gallery and I think your are right, just what I need. Onfortunately I have found that Gallery musthave PHP safe mode off, which Surftown does not allow. Using Gallery means write o

Re: [PHP] Choosing PHP or ? for building an automatic photo web.

2008-06-08 Thread Stut
On 8 Jun 2008, at 21:44, Peter Sorensen wrote: I want to make my own web with my familie photos. At the same time I get a remote backup for our photos. I am new to web prgramming including HTML, but as an electronic engineer I have some fundamental understanding of programming. I use windows XP

[PHP] Choosing PHP or ? for building an automatic photo web.

2008-06-08 Thread Peter Sorensen
Hi everyone I want to make my own web with my familie photos. At the same time I get a remote backup for our photos. I am new to web prgramming including HTML, but as an electronic engineer I have some fundamental understanding of programming. I use windows XP or Vista but that properly does no

Re: [PHP] Re: How to structure code for forms

2008-06-08 Thread Roland Häder
Hi, On Sunday, 8. June 2008, Manuel Lemos wrote: > Hello, > > on 06/08/2008 08:01 AM Ethan Whitt said the following: > > I am new to PHP and have been researching ways to structure code for > > forms. I have found a > > few basic tutorials that present, validate & present errors, and then > > proc

[PHP] Re: How to structure code for forms

2008-06-08 Thread Manuel Lemos
Hello, on 06/08/2008 08:01 AM Ethan Whitt said the following: > I am new to PHP and have been researching ways to structure code for forms. > I have found a > few basic tutorials that present, validate & present errors, and then > process form data. I was > wondering if anyone could share their a

[PHP] Bulk Email Problems

2008-06-08 Thread celtic
Hi, I coded a bulk emailer for our newsletter that worked fine for the last few years resulting in many requests for forgotten passwords and renewed site activity. Last year, we sent it again, after a few minor code changes, and had no response whatsoever. Unfortunately, I no longer have the

Re: [PHP] How to structure code for forms

2008-06-08 Thread Larry Garfield
Going full-blown MVC (a rather lousy web architecture that most people get wrong) for just simple form handling is serious overkill. The form itself is fully encapulated within the View (the user interaction part), and should *not* directly relate to the model. I personally am rather fond of

Re: [PHP] How to structure code for forms

2008-06-08 Thread Nitsan Bin-Nun
Exectly, I fall in love with zend_form but you can use cakephp or joomla and etc HTH On 08/06/2008, Nirmalya Lahiri <[EMAIL PROTECTED]> wrote: > > --- On Sun, 6/8/08, Ethan Whitt <[EMAIL PROTECTED]> wrote: > > > From: Ethan Whitt <[EMAIL PROTECTED]> > > Subject: [PHP] How to structure code for f

Re: [PHP] How to structure code for forms

2008-06-08 Thread Nirmalya Lahiri
--- On Sun, 6/8/08, Ethan Whitt <[EMAIL PROTECTED]> wrote: > From: Ethan Whitt <[EMAIL PROTECTED]> > Subject: [PHP] How to structure code for forms > To: php-general@lists.php.net > Date: Sunday, June 8, 2008, 4:31 PM > I am new to PHP and have been researching ways to structure > code for forms.

[PHP] How to structure code for forms

2008-06-08 Thread Ethan Whitt
I am new to PHP and have been researching ways to structure code for forms. I have found a few basic tutorials that present, validate & present errors, and then process form data. I was wondering if anyone could share their approach on how they structure these actions? Ideally, I would like to se