I like to say that I really like the help I get here.
Now the thing is I don´t understand why I get this error ( its the Email activation part on the user_system )
this is my error : Warning: mysql_result() expects parameter 1 to be resource, boolean given in /Applications/XAMPP/xamppfiles/htdocs/user_system/core/inc/user.inc.php on line 37
This is my code.
// check if the user account is active. function is_active($user){ $user = mysql_real_escape_string($user); $sql = "SELECT COUNT(`user_activations`, `user_id`) FROM `users` INNER JOIN `user_activations` ON `users`, `user_id` = `user_activations`, `user_id` WHERE `users` `user_name` = '{$user}'"; $result = mysql_query($sql); return (mysql_result($result, 0) == '0') ? true : false; }Please let me know what I do wrong here.
A other thing, If I have some code I like for you to look in to do you then take orders? I mean if I pay for it can you help me with some hard ( well hard to me ) code.
Best regards
Wizzuriz