I have this
mysqli_query($conect,"INSERT INTO Clientes
(Nombre,Apellido,Direccion,Provincia,Ciudad,Fono,Email,
nombreEnv,apellidoEnv,provinciaEnv,ciudadEnv,
direccionEnv,fonoEnv,emailEnv,Emailusua) VALUES
('$nombre','$apellido','$direccion','$provincia',
'$ciudad','$fono','$email','$nombre1','$apellido1',
'$direccion1','$provincia1','$ciudad1','$fono1','$email1')") or
die(mysqli_error());
the connection comes from
$conect = mysqli_connect("127.0.0.1","root","root","Homocervcerus") or
die ("No se encontro el servidor");
and I get this error
Warning: mysqli_error() expects exactly 1 parameter, 0 given
I have another insert equal to this one and that if it works but this one does not and it gives me this error and I do not know what it should be