I am sure the followng is correct, however it wont work! Any1 know why?
<?php
$DBhost = "localhost";
$DBuser = "**";
$DBpass = "";
$DBname = "***";
mysql_connect($DBhost,$DBuser,$DBpass) or die("Unable to connect to database");
mysql_select_db ($DBname);
$query = mysql_query("INSERT INTO ****_users (username, password)" . "VALUES ('$username', '$password')");
?>