Hello All,
I am new to this forum..and also I am newbie.
This forum software really rocks and your supports are extremely good.
i am alredy running a website, with registration form.
according this post, i did to include username,pass and email into forum database.
unfortunately it is showing error
"There was a problem while processing your request. Please try again and if this problem persists, contact the administrator "
my code is
$conn = mysql_connect($dbhost, $dbuser, $dbpasswd) or die ('Error connecting to mysql');
mysql_select_db("$dbname",$conn) or die ("could not open db".mysql_error());
$query_ft = "INSERT INTO foo_users (username, password, email) values ('".$username."', '".md5($pass)."', '".$email."')";
mysql_query($query_ft, $conn) or die (mysql_error());