Passing value with a minus symbol does not seem to work ...
Passing value with a minus symbol does not seem to work ...
redsunset
Posts: 44Questions: 15Answers: 0
I have the following code that is failing, I guess due to the minus symbol in that string that is added:
var sid = '63bacc32-d6ba-420c-9b49-299c08e5fb39';
var table23 = $('#table23').DataTable({
"ajax": "data-singlecard.php?job=getsinglecard&sid="+sid+"&useridbuyer="+useridbuyer+"&userCurrencyBuyer="+userCurrencyBuyer,
but sid is not passed at all ... I can not catch it with $_GET in php.
what can I do to make it work?
This discussion has been closed.
Answers
Don't see anything that stands out as a problem. Are you able to get the other values?
I would try using the
ajax.data
option to build your parameters. It may or may not help but it would make for more readable code. For example:Kevin
thank you very much! I will give it a try!