Jump to content

need help with activation script


tritus

Recommended Posts

hey when it sends the link in email and i goto the link its not verifying the verification code..  cant find out whats wrong but my error msg is

 

Your account could not be activated. Please re-check the link or contact the system administrator.

 

    <?php

 

      if (isset($_GET['x'])) {

          $x = (int) $_GET['x'];

      } else {

          $x = 0;

      }

      if (isset($_GET['y'])) {

          $y = $_GET['y'];

      } else {

          $y = 0;

      }

 

      if ( ($x> 0) && (strlen($y) == 32)) {

 

          require_once ('mysql_connect.php');

          $query = "UPDATE users SET active=NULL WHERE (user_id=$x AND active='" . $y . "') LIMIT 1"; 

          $result = mysql_query($query);

 

          if (mysql_affected_rows() == 1) {

              echo "<h3>Your account is now active. You may now log in.</h3>";

          } else {

              echo '<p><font color="red" size="+1">Your account could not be activated. Please re-check the link or contact the system administrator.</font></p>';

          }

 

          mysql_close();

 

      } else {

 

          echo '<b>Activation link not valid!</b>';

 

      }

      ?>

 

\

Link to comment
Share on other sites

I am a novice but try not using $_GET['y'] all the time...

Set a variable at the top like

$get_y = $_GET['y'];

 

then use $get_y in ur scripts.

 

See if that helps, if not sorry

 

Edit: I mean immedieatly when the script starts....

IE:

 

    <?php

      $vary = $_GET['x'];

 

      if (isset($vary)) {

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.