Account Register Help

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

Okay so i found out it will only let me put in numbers for username and password but NO letters any ideas =-/

fixed please close

Sponsor our Newsletter | Privacy Policy | Terms of Service