This link should entail the proper server.php usage. https://github.com/sokchab/phpserverside/blob/master/fetch.php
And proper ajax index formatting: https://github.com/sokchab/phpserverside/blob/master/index.html
This should answer the bulk of my questions. I shall return on a different topic later if I have more questions. This one is already pretty off original topic. Unless anyone has anything to add...
Thanks.
Your Javascript initialisation for DataTables above uses:
"type": "POST"
But in the PHP you have:
SSP::simple( $_GET, ...
Change that $_GET to $_POST.
$_GET
$_POST
Allan
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
This link should entail the proper server.php usage.
https://github.com/sokchab/phpserverside/blob/master/fetch.php
And proper ajax index formatting: https://github.com/sokchab/phpserverside/blob/master/index.html
This should answer the bulk of my questions. I shall return on a different topic later if I have more questions. This one is already pretty off original topic. Unless anyone has anything to add...
Thanks.
Your Javascript initialisation for DataTables above uses:
But in the PHP you have:
Change that
$_GET
to$_POST
.Allan