I have a registration form on my site for users to sign up to become members.
When they register their details are sent to the mysql database, and their email, name etc is all put in. they also get a unique registration code which is generated by random md5 on submit and this code is entered into the database as well as it being emailed to them.
The problem i am getting is each time a new user signs up a new code is generated but it re-writes over the previous code for all the other users in the database. What i want is for each users code to stay unique and for it not to re-write over the others each time a new user signs up, so I'm thinking that i need to edit my code to say
UPDATE `ptb_registrations` SET `registration_code` = '%s'
WHERE email = (whatever unique email the user enters)
any one got any ideas? thanks
<?php
/**
* ShuttleCMS - A basic CMS coded in PHP.
* random code - Used for allowing a user to reset password
*
* @author Dan <dan@danbriant.com>
* @version 0.0.1
* @package ShuttleCMS
*/
define('IN_SCRIPT', true);
// Start a session
session_start();
/*
* Generates registration code and puts it on database
*/
//Generate a RANDOM MD5 Hash for a code
$random_code=md5(uniqid(rand()));
//Take the first 8 digits and use them as the code we intend to email the user
$emailcode=substr($random_code, 0, 8);
//Encrypt $emailcode in MD5 format for the database
$registrationcode=($emailcode);
// Make a safe query
$query = sprintf("UPDATE `ptb_registrations` SET `registration_code` = '%s' ",
mysql_real_escape_string($registrationcode));
mysql_query($query)or die('Could not update members: ' . mysql_error());
?>
WHEREclause in your query? This reminds me of the time when my whole movie database consisted of nothing but "Ace Ventura - Pet Detective" :) – Jack Dec 6 '12 at 16:08wherecluase in your SQL – Eyal Alsheich Dec 6 '12 at 16:10