laimas,
не понимаю...
$stmt = mysqli_prepare($mysqli, "INSERT INTO L007_demo(age, sex, stores, costs) VALUES (?, ?, ?, ?)");
printf(mysqli_stmt_param_count($stmt));
if ( false===$stmt ) {
die('prepare() failed: ' . mysqli_error ($mysqli));
}
$bp = mysqli_stmt_bind_param($stmt, 'sssd', $age, $sex, $stores, $costs);
if ( false===$bp ) {
die('bind_param() failed: ' . mysqli_error ($mysqli));
}
$exe = mysqli_stmt_execute($stmt);
if ( false===$exe ) {
die('execute() failed: ' . mysqli_error ($mysqli));
}
printf("%d строка вставлена.\n", mysqli_stmt_affected_rows($stmt));
mysqli_stmt_close($stmt);
выводит сообщение "0 строка вставлена."
UPD
Все закомментила, оставила только
include_once("config.php");
$age = '25-35';
$sex = 'female';
$stores = '2 stor';
$costs = 800;
$tt = mysqli_query($mysqli, "INSERT INTO L007_demo(age, sex, stores, costs) VALUES('$age','$sex','$stores','$costs')");
echo mysqli_error($mysqli);
ничего не вывелось.