Skip to content

Server document root and folder in different machines

I am using tDPDF to use unicode font. The problem is that i am creating my web page using xampp, testing on Raspberry Pi LAMP server and uploading on my server. All of them have different server document root address which it is causing an error on a unicode file(php). It has the following line Xampp File I m…

Ajax how to find something in array of objects via find method

In backend PHP I have this defined in loop: and then final list is created: In javascript I am getting these results via ajax call: The first console.log(result); gives me all data something like: but console.log(this.myoutput.approved); gives me undefined. Is something what I am doing wrong here? Answer The …