Colleagues,
How do I get the value of an onclick and direct to another page. See below:
$('.value-plus').on('click', function(){
var lista = $('.invert > span');
$.each(lista, function(index,item){
valor = $(item).text();
trocar = valor.replace(",",".");
e.preventDefault();
var objeto = new Object();
objeto.valor = trocar.toFixed(2);
var dados= JSON.stringify(objeto);
$.ajax({
type: "GET",
dataType: 'json',
data: dados,
url: "atualizar-carrinho.php",
success: function(resposta){
if (resposta) {
alert("Sucesso!");
} else {
alert("Erro");
}
}
});
});
});
upgrade-cart.php I'm getting it this way:
<?php
$conexao = (conexao ao banco de dados);
$novoValor = $_GET['valor'];
mysqli_query($conexao,"INSERT INTO teste VALUES(null,'".$novoValor."')");