I have this code to insert data into a MySQL Database.
<?php
$con = mysqli_connect('mysql4.000webhost.com', 'a9671143_cas', '08011998', 'a9671143_testdb');
$number = $_POST['number'];
$name = $_POST['name'];
$password = $_POST['password'];
$partiesIds = $_POST['partiesIds'];
$statement = mysqli_prepare($con, 'INSERT INTO User (number, name, password, partiesIds) VALUES (test, test, test, test)');
mysqli_execute($statement);
mysqli_stmt_close($statement);
mysqli_close($con);
?>
What's wrong, I got this code from a tutorial so I don't understand it well.

mysqli_connectstatement are incorrect. (The subsequent errors are a result of not being connected successfully, so don't yet factor in to the issue).