[PHP] How to confirm subscriptions by e-mail on a PHP site ?

2005-05-20 Thread Mário Gamito
Hi, I'm making this middle-range site (i. e., not so little, bit not so big, either), and i want users that subscribe to my site to have their confirmation made by email. Does anyone sugests a simple, yet effective way to do this ? Please, don't misunderstand me. The PHP part i know. The

[PHP] How to confirm subscriptions by e-mail on a PHP site ?

2005-05-20 Thread Mário Gamito
Hi, I'm making this middle-range site (i. e., not so little, bit not so big, either), and i want users that subscribe to my site to have their confirmation made by email. Does anyone sugests a simple, yet effective way to do this ? Please, don't misunderstand me. The PHP part i know. The

Re: [PHP] How to confirm subscriptions by e-mail on a PHP site ?

2005-05-20 Thread Mário Gamito
- From: Mário Gamito [mailto:[EMAIL PROTECTED] Sent: 20 May 2005 9:21 am To: php-general@lists.php.net Subject: [PHP] How to confirm subscriptions by e-mail on a PHP site ? Hi, I'm making this middle-range site (i. e., not so little, bit not so big, either), and i want users that subscribe to my

Re: [PHP] How to confirm subscriptions by e-mail on a PHP site ?

2005-05-20 Thread Duncan Hill
On Friday 20 May 2005 09:21, Mário Gamito typed: Hi, I'm making this middle-range site (i. e., not so little, bit not so big, either), and i want users that subscribe to my site to have their confirmation made by email. Does anyone sugests a simple, yet effective way to do this ? When the

Re: [PHP] How to confirm subscriptions by e-mail on a PHP site ?

2005-05-20 Thread Rory Browne
You can either email them an URL containing an activation code, which would have them activate in their browser. If you don't understand the terms .forwared, or MTA, you should probably either learn more about them or skip to the third paragraph. If you want them to activate using their email

RE: [PHP] How to confirm subscriptions by e-mail on a PHP site ?

2005-05-20 Thread Jim Moseby
-Original Message- From: Mário Gamito [mailto:[EMAIL PROTECTED] Sent: Friday, May 20, 2005 5:13 AM To: php-general@lists.php.net Subject: [PHP] How to confirm subscriptions by e-mail on a PHP site ? Hi, I'm making this middle-range site (i. e., not so little, bit not so big, either

Re: [PHP] How to confirm subscriptions by e-mail on a PHP site ?

2005-05-20 Thread Marcus Joyce
The way i did it was, put a 25char hash inside the registered column, then sent an email to the user containing something like domain.com?user=id_numberhash=hash then i did select userID where userID = $_GET['user'] registered = $_GET['hash'] (not exactly the sql phrase, but i dont feel like