Bueno aver si ya lo e entendido, la informacion de envio a la BD la tengo asi:
Código PHP:
// metiendo informacion
$insert = mysql_query("insert into $table values ('NULL', '".$_POST['username']."', '".$_POST['password']."', '".$_POST['name1']."', '".$_POST['name2']."', '".$_POST['email']."', '".$_POST['website']."', 'images/avatar.jpg')")
Bueno, lo tendria que poner asi?:
Código PHP:
// metiendo informacion
$insert = mysql_query("insert into $table values ('NULL', '".$_POST['username']."', 'md5(".$_POST['password'].")', '".$_POST['name1']."', '".$_POST['name2']."', '".$_POST['email']."', '".$_POST['website']."', 'images/avatar.jpg')")