Using this insert-script:
$stmt = $mysqli->prepare("INSERT INTO table VALUES (?)");
$stmt->bind_param('s', $value); // echoing $value: 120.120
$stmt->execute();
$stmt->close();
$mysqli->close();
I get this error:
Call to a member function bind_param() on a non-object
i already tried "s", "d" and "i" but none works, anybody could help me? greetings!