Here is the final complete code.
I edited it a bit so that you may use it and put your personal info without modifying the handling code. I also removed a whitespace at the beginning that could ruin your script.
PHP Code:
<?php
$db_host = "localhost"; //keep the same
$db_user = "conmiro_conmiro"; //this is your username
$db_pass = "PUT PASSWORD HERE"; //this is your pasword
$db_name = "conmiro_PUT DATABASE NAME HERE"; //this is your database name. it starts by conmiro_
// change the name between the brackets [' '] to what you want i.e sitename , description , email
$values = array($_POST['age'], $_POST['age'], $_POST['age']);
//You do not need to edit below
$query = "INSERT INTO websites (sitename, description, email) VALUES('" . $values[0] . "', '" . $values[1] . "', '" . $values[2] . "')"
$con = mysql_connect($db_host, $db_user, $db_pass);
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db($db_name, $con);
mysql_query($query);
mysql_close($con);
?>