[PHP-DB] RE: [PHP-DB] Reserve Username while Confirming Signup

2003-06-04 Thread Dewi Wahyuni
Alright thanks. Can I put a crontab on the script? But I'm not really familiar with the crontab thing. I'm using a hosting, it's Linux with Apache. I saw some articles in php.net on using crontab but it looks alien to me. Thanks a lot everyone! Dewi _

RE: [PHP-DB] Reserve Username while Confirming Signup

2003-06-03 Thread Peter Beckman
ut here are my thoughts: > Maybe add a TIMESTAMP(14) field in your temp table, then run a script > periodically to delete any rows stored that are more than, say, 20 mins > old? > > Gav > > > -Original Message- > From: Dewi Wahyuni [mailto:[EMAIL PROTECTED] > Sent:

Re: [PHP-DB] Reserve Username while Confirming Signup

2003-06-03 Thread Becoming Digital
ructor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, 03 June, 2003 00:00 Subject: Re: [PHP-DB] Reserve Username while Confirming Signup Sounds like ya wanna use a database that supports transactions, PostgreSQL supports it. I'm kinda n

RE: [PHP-DB] Reserve Username while Confirming Signup

2003-06-03 Thread Gavin Amm
Tuesday, 3 June 2003 1:48 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Reserve Username while Confirming Signup Hi All, I have a sign up page and when the user submit, it goes to a confirmation page, before the person actually submits. The confirmation page stores the username and password in t

Re: [PHP-DB] Reserve Username while Confirming Signup

2003-06-03 Thread Boa Constructor
: <[EMAIL PROTECTED]> Sent: Tuesday, June 03, 2003 4:47 AM Subject: [PHP-DB] Reserve Username while Confirming Signup > Hi All, > > I have a sign up page and when the user submit, it goes to a confirmation page, before the person actually submits. > > The confirmation page stores th

[PHP-DB] Reserve Username while Confirming Signup

2003-06-03 Thread Dewi Wahyuni
Hi All, I have a sign up page and when the user submit, it goes to a confirmation page, before the person actually submits. The confirmation page stores the username and password in the Session variable and the submit page stores it into the database by getting it from the session. The rest of