Hey i need some help im getting this error
Unknown column ‘testers’ in ‘field list’
Now heres all the code
Index.php
<?php
$host="localhost";
$user="root";
$port="3306";
$db="underworld";
$dbname="account";
mysql_connect($host,$user);
mysql_select_db("underworld") or die(mysql_error());
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form action="insert.php" method="post">
username: <input type="text" name="username"><br>
password: <input type="text" name="password"><br>
<input type="Submit">
</form>
</body>
</html>
insert.php
<?php
$host="localhost";
$user="root";
$port="3306";
$db="underworld";
$dbname="account";
mysql_connect($host,$user);
mysql_select_db("underworld") or die(mysql_error());
$username=$_POST['username'];
$password=$_POST['password'];
mysql_query("INSERT INTO account
(username,password) VALUES($username,$password) ")
or die(mysql_error());
mysql_close();
?>
IM new bare with me please :D