datatables editor and having to return custom JSON
datatables editor and having to return custom JSON
wbyers
Posts: 48Questions: 12Answers: 1
Okay because of the specific way the actual table is populated using JSON. I have to duplicate the custom JSON when returning. Now to return this custom JSON Would I use echo or return?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
If you are using PHP,
echo
. That is what will send whatever you echo back to the client.Allan
Thank you