Jump to content

member activation by email: clicking on the activation link


Himself12794

Recommended Posts

Hello, I'm having trouble setting up membership on my website to activation by email.

The email is sent successfully, but there is a problem in the verification process. The account is activated when the activated column=1.

Here's the code:

 

<?php
//Start session
session_start();

//Include database connection details
require_once('config.php');

//Connect to mysql server
$link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);
if(!$link) {
	die('Failed to connect to server: ' . mysql_error());
}

//Select database
$db = mysql_select_db(DB_DATABASE);
if(!$db) {
	die("Unable to select database");
}

//Info sent from email
$activationKey = $_GET['ak'];

//Activate account
$qry = "INSERT INTO members(activate) VALUES('1') WHERE activation_key='$activationKey'";
$result = mysql_query($qry);

//Check if activation was successful
if($result) {
	header("location: activated.php");
	exit();
}else {
	die("Query failed");
}

?>

 

Whenever I try to activate, it returns the Query failed error. I can't find the problem. Can anyone spot it?

Link to comment
Share on other sites

For the time being, echo the query string and the error generated by MySQL instead of the generic error message.

 

} else {
     die( "<br>Query: $qry<br>Failed with error: " . mysql_error() );
}

 

Then post the output it generates.

Link to comment
Share on other sites

It returns this:

Query: INSERT INTO members(activate) VALUES('1') WHERE activation_key='319770278153397993011709668425323553761391406339'

Failed with error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE activation_key='319770278153397993011709668425323553761391406339'' at line 1

Link to comment
Share on other sites

INSERT queries don't use a WHERE clause. I'm assuming you need to update the record that was created upon initial user registration, correct? You would need to use UPDATE syntax for that.

 

UPDATE table SET field1 = value1, field2 = value2 WHERE some_field = some_value

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.