Re: [PHP] Conceptual ?: using 'multi-purpose' form for validation

2004-09-26 Thread Whil Hentzen
On Sunday 26 September 2004 04:35, Marek Kilimajer wrote: > Whil Hentzen wrote: > > I can get a single form to call itself again if there's nothing fancy > > going on. This code will prompt the user for their mail if it doesn't > > already exist, and if the email does exist, provides some data out

Re: [PHP] Conceptual ?: using 'multi-purpose' form for validation

2004-09-26 Thread Marek Kilimajer
Whil Hentzen wrote: I can get a single form to call itself again if there's nothing fancy going on. This code will prompt the user for their mail if it doesn't already exist, and if the email does exist, provides some data out of database. $email = (isset($_POST['email']) ? $_POST['email'] : '')

[PHP] Conceptual ?: using 'multi-purpose' form for validation

2004-09-25 Thread Whil Hentzen
I can get a single form to call itself again if there's nothing fancy going on. This code will prompt the user for their mail if it doesn't already exist, and if the email does exist, provides some data out of database. Login: Data for email: // do some database stuff an