";
$command="INSERT INTO houses(apartment, name, town, value) VALUES(2, 'Turman', 'Los Angeles', 34000)";
$result = mysql_query($command, $connection);
if($result) echo "Added Uma
";
$command="INSERT INTO houses(apartment, name, town, value) VALUES(3, 'Johansson', 'Miami', 28000)";
$result = mysql_query($command, $connection);
if($result) echo "Added Scarlett
";
if($result)
echo "OK";
else
echo "Error " .mysql_error();
?>