jwk811 Posted October 23, 2006 Share Posted October 23, 2006 Whats wrong? This is the problem...[tt]Warning: mysql_affected_rows(): supplied argument is not a valid MySQL-Link resource in /home/content/j/w/k/jwk811/html/membership/activate.php on line 25[/tt]Heres the entire script...[code]<?php/* Account activation script */// Get database connectioninclude ( './db.php' );// Create variables from URL.// first check if it's already been activated$sql = mysql_query ( "SELECT COUNT(*) AS total FROM users WHERE userid = '" . mysql_real_escape_string ( $_REQUEST['id'] ) . "' AND password = '" . mysql_real_escape_string ( $_REQUEST['code'] ) . "' AND activated = 1" ) or die ( 'Query Error: ' . mysql_error );$found = mysql_fetch_assoc ( $sql );if ( $found['total'] == 0 ){ $sql = mysql_query ( "UPDATE users SET activated = 1 WHERE userid = '" . mysql_real_escape_string ( $_REQUEST['id'] ) . "' AND password = '" . mysql_real_escape_string ( $_REQUEST['code'] ) . "'" ) or die ( 'Query Error: ' . mysql_error ); if(strlen(mysql_error()) > 0) { die(mysql_error()); } if ( mysql_affected_rows ( $sql ) == 0 ) { echo "<strong><font color='red'>Your account could not be activated, no user found by that id or password!</font></strong>"; } else { echo "<strong>Your account has been activated!</strong> You may login below!<br />"; include ( './login.php' ); }}?>[/code]Heres line 25...[code]if ( mysql_affected_rows ( $sql ) == 0 )[/code]If you can find what the problem is that would be great. Quote Link to comment Share on other sites More sharing options...
pocobueno1388 Posted October 23, 2006 Share Posted October 23, 2006 Try this:[code]<?php/* Account activation script */// Get database connectioninclude ( './db.php' );// Create variables from URL.// first check if it's already been activated$sql = mysql_query ( "SELECT COUNT(*) AS total FROM users WHERE userid = '" . mysql_real_escape_string ( $_REQUEST['id'] ) . "' AND password = '" . mysql_real_escape_string ( $_REQUEST['code'] ) . "' AND activated = 1" ) or die ( 'Query Error: ' . mysql_error );$found = mysql_fetch_assoc ( $sql );if ( $found['total'] == 0 ){ $sql = mysql_query ( "UPDATE users SET activated = 1 WHERE userid = '" . mysql_real_escape_string ( $_REQUEST['id'] ) . "' AND password = '" . mysql_real_escape_string ( $_REQUEST['code'] ) . "'" ) or die ( 'Query Error: ' . mysql_error );$num = mysql_num_rows($sql); if(strlen(mysql_error()) > 0) { die(mysql_error()); } if ( $num == 0 ) { echo "<strong><font color='red'>Your account could not be activated, no user found by that id or password!</font></strong>"; } else { echo "<strong>Your account has been activated!</strong> You may login below!<br />"; include ( './login.php' ); }}?>[/code] Quote Link to comment Share on other sites More sharing options...
jwk811 Posted October 23, 2006 Author Share Posted October 23, 2006 ahh... nope getting the same error Quote Link to comment Share on other sites More sharing options...
jwk811 Posted October 23, 2006 Author Share Posted October 23, 2006 ive been having so much trouble with this account activation script.. i think im just not going to make it so they dont have to activate it.. maybe come back on this in a while its just driving me insane! im sure there will be many more problems for me to come with the rest of the membership tutorial so far ive made it there and now im gonna have to play around with the script since im not goin to do this.. which im not very good at yet.. Quote Link to comment Share on other sites More sharing options...
jwk811 Posted October 25, 2006 Author Share Posted October 25, 2006 YES I GOT IT TO WORK!! IM SO HAPPY FOR ME!! lol it was just some stupid thing.. the passwords wouldnt match because the cell in the database table wasn't big enough to fit the md5 password.. i got the first one i was trying to work to work not this one but ill try that now.. im sure there will be more problems to come lol Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.