$buscar = 'test string';
$stmt = $conexion->prepare("SELECT * FROM carpas WHERE MATCH(marca,modelo) against(?) LIMIT 10;");
$stmt->bind_param("s", $buscar);
$stmt->execute();
$result = $stmt->get_result();
print_r($result);
Php script gets me no results, but if I open phpmyadmin and input SELECT * FROM carpas WHERE MATCH(marca,modelo) against('test string') LIMIT 10
It get results.
I think the binding might have problems, but dont know whats wrong