Quote:
Originally Posted by TheRed
Try using $userdata->vars['password'].
But your code must be located below:
Code:
$vbulletin->userinfo['userid']
= $userid
= $userdata->save();
Anyways he got sorted this out already.
|
I'm trying to send to this:
Code:
// SQL data
$db_u = "root"; // fill in ur db username
$db_p = "***"; // fill in ur db pass
$db_host = "********"; // fill in only if u're not running it on the same machine as the db.
// don't change
$u = $_POST['user'];
$p = $_POST['pass'];
$e = $_POST['email'];
//Database Link
@$link = mysql_connect("$db_host", "$db_u", "$db_p");
if (!$link) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('v3');
$q = "insert into `accounts` (login,password,s,v,gm,sessionkey,email) values
('$u','$p','NULL','NULL','0','NULL','$e')";
}
?>
Just need login, pass, e-mail..the rest is defualt values. Please help this php noob out.