Código Javascript:
Ver original
<script> $(document).ready(function() { $('.edit-address').click(function() { var valor= $(this).attr('data-pk'); console.log(valor); $.ajax({ url:'consulta.php', type:'get', data:{ valor:valor, success: function(resultado){ console.log(resultado); }, } }); }); $('.edit-address').editable({ url: 'multiples.php', title: 'Enter city, street and building #', }); }); </script>
que estoy haciendo mal?
en consulta.php
Código PHP:
Ver original
$valor = $_GET['valor']; $resultado=$valor + 100; echo $resultado;